1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 17:27:24 +08:00

Update Transforms to new style.

This commit is contained in:
Dean Herbert 2016-09-01 15:01:13 +09:00
parent 586aaad2b0
commit a2fc339a45

View File

@ -139,10 +139,14 @@ namespace osu.Game.Graphics.UserInterface
{
cursor.FadeTo(0.5f, 200, EasingTypes.Out);
cursor.FadeColour(Color4.White, 200, EasingTypes.Out);
cursor.Transformations.Add(new Transformation(TransformationType.Fade, 0.5f, 0.2f, Time + 200, Time + 200 + /*(OsuGame.Audio.BeatSyncing ? (int)OsuGame.Audio.BeatLength : */500)
cursor.Transformations.Add(new TransformAlpha(Clock)
{
StartValue = 0.5f,
EndValue = 0.2f,
StartTime = Time,
EndTime = Time + 500,
Easing = EasingTypes.InOutSine,
Loop = true
LoopCount = -1,
});
}
}