1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 05:47:18 +08:00
osu-lazer/osu.Game/Storyboards/Commands/StoryboardTriggerGroup.cs

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

25 lines
838 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
namespace osu.Game.Storyboards.Commands
2017-09-07 23:55:05 +02:00
{
public class StoryboardTriggerGroup : StoryboardCommandGroup
2017-09-07 23:55:05 +02:00
{
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
public StoryboardTriggerGroup(string triggerName, double startTime, double endTime, int groupNumber)
2017-09-07 23:55:05 +02:00
{
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
}
}