Fix custom transform.

This commit is contained in:
smoogipooo
2017-03-30 19:03:16 +09:00
committed by Dean Herbert
parent ddc6d45985
commit 76d0beb64f
2 changed files with 2 additions and 4 deletions

View File

@ -298,9 +298,7 @@ namespace osu.Game.Screens.Tournament
private void speedTo(float value, double duration = 0, EasingTypes easing = EasingTypes.None)
{
DelayReset();
UpdateTransformsOfType(typeof(TransformScrollSpeed));
TransformFloatTo(speed, value, duration, easing, new TransformScrollSpeed());
TransformTo(speed, value, duration, easing, new TransformScrollSpeed());
}
private enum ScrollState