Update Transforms to new style.

This commit is contained in:
Dean Herbert 2016-09-01 15:01:13 +09:00
parent 586aaad2b0
commit a2fc339a45
1 changed files with 6 additions and 2 deletions

View File

@ -139,10 +139,14 @@ protected override void UpdateLayout()
{
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,
});
}
}