1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 01:27:29 +08:00
osu-lazer/osu.Game/Storyboards/CommandTrigger.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
811 B
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 17:19:50 +08:00
2017-09-08 05:55:05 +08:00
namespace osu.Game.Storyboards
{
public class CommandTrigger : CommandTimelineGroup
{
2017-09-08 19:04:53 +08:00
public string TriggerName;
public double TriggerStartTime;
public double TriggerEndTime;
public int GroupNumber;
2018-04-13 17:19:50 +08:00
2017-09-08 05:55:05 +08:00
public CommandTrigger(string triggerName, double startTime, double endTime, int groupNumber)
{
2017-09-08 19:04:53 +08:00
TriggerName = triggerName;
TriggerStartTime = startTime;
TriggerEndTime = endTime;
GroupNumber = groupNumber;
2017-09-08 05:55:05 +08:00
}
2018-04-13 17:19:50 +08:00
2017-09-08 05:55:05 +08:00
public override string ToString()
2017-09-08 19:04:53 +08:00
=> $"{TriggerName} {TriggerStartTime} -> {TriggerEndTime} ({GroupNumber})";
2017-09-08 05:55:05 +08:00
}
}