mirror of
https://github.com/ppy/osu.git
synced 2024-12-17 23:42:55 +08:00
22 lines
810 B
C#
22 lines
810 B
C#
// 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.
|
|
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Transforms;
|
|
|
|
namespace osu.Game.Storyboards.Commands
|
|
{
|
|
public class StoryboardRotationCommand : StoryboardCommand<float>
|
|
{
|
|
public StoryboardRotationCommand(double startTime, double endTime, float startValue, float endValue, Easing easing)
|
|
: base(startTime, endTime, startValue, endValue, easing)
|
|
{
|
|
}
|
|
|
|
public override void SetInitialValue(Drawable d) => d.Rotation = StartValue;
|
|
|
|
public override TransformSequence<Drawable> ApplyTransform(Drawable d)
|
|
=> d.RotateTo(StartValue).Then().RotateTo(EndValue, Duration, Easing);
|
|
}
|
|
}
|