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

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

33 lines
1.1 KiB
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
2022-06-17 15:37:17 +08:00
#nullable disable
2017-09-08 05:55:05 +08:00
using osu.Framework.Graphics;
2018-04-13 17:19:50 +08:00
2017-09-08 05:55:05 +08:00
namespace osu.Game.Storyboards
{
2017-09-13 17:22:24 +08:00
public interface IStoryboardElement
2017-09-08 05:55:05 +08:00
{
string Path { get; }
bool IsDrawable { get; }
2018-04-13 17:19:50 +08:00
double StartTime { get; }
2017-09-08 05:55:05 +08:00
Drawable CreateDrawable();
}
public static class StoryboardElementExtensions
{
/// <summary>
2021-04-18 11:35:54 +08:00
/// Returns the end time of this storyboard element.
/// </summary>
/// <remarks>
/// This returns the <see cref="IStoryboardElementWithDuration.EndTime"/> where available, falling back to <see cref="IStoryboardElement.StartTime"/> otherwise.
/// </remarks>
2021-04-18 11:35:54 +08:00
/// <param name="element">The storyboard element.</param>
/// <returns>The end time of this element.</returns>
public static double GetEndTime(this IStoryboardElement element) => (element as IStoryboardElementWithDuration)?.EndTime ?? element.StartTime;
}
2017-09-08 05:55:05 +08:00
}