Delay -> ApplyDelay; DelayReset -> ResetDelay

This commit is contained in:
Thomas Müller
2017-07-16 14:06:46 +03:00
parent 6063219b72
commit 71105bb9ee
28 changed files with 45 additions and 45 deletions

View File

@ -100,14 +100,14 @@ namespace osu.Game.Screens.Menu
Content.FadeInFromZero(500);
icon.Delay(1500);
icon.ApplyDelay(1500);
icon.FadeColour(iconColour, 200);
Delay(6000, true);
ApplyDelay(6000, true);
Content.FadeOut(250);
Delay(250);
ApplyDelay(250);
Schedule(() => Push(intro));
}