1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 05:47:18 +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.

27 lines
830 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 18:19:50 +09:00
2022-06-17 16:37:17 +09:00
#nullable disable
2017-09-07 23:55:05 +02:00
namespace osu.Game.Storyboards
{
public class CommandTrigger : CommandTimelineGroup
{
2017-09-08 13:04:53 +02:00
public string TriggerName;
public double TriggerStartTime;
public double TriggerEndTime;
public int GroupNumber;
2018-04-13 18:19:50 +09:00
2017-09-07 23:55:05 +02:00
public CommandTrigger(string triggerName, double startTime, double endTime, int groupNumber)
{
2017-09-08 13:04:53 +02:00
TriggerName = triggerName;
TriggerStartTime = startTime;
TriggerEndTime = endTime;
GroupNumber = groupNumber;
2017-09-07 23:55:05 +02:00
}
2018-04-13 18:19:50 +09:00
2017-09-07 23:55:05 +02:00
public override string ToString()
2017-09-08 13:04:53 +02:00
=> $"{TriggerName} {TriggerStartTime} -> {TriggerEndTime} ({GroupNumber})";
2017-09-07 23:55:05 +02:00
}
}