1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 08:02:55 +08:00

Fix followpoints needing a DelayReset.

This commit is contained in:
Damnae 2017-02-10 10:02:37 +01:00
parent 4e6b6ab794
commit 6f37c02868
2 changed files with 2 additions and 5 deletions

View File

@ -40,8 +40,6 @@ namespace osu.Game.Modes.Osu.Objects.Drawables.Connections
{
base.LoadComplete();
DelayReset();
Delay(StartTime);
FadeIn(DrawableOsuHitObject.TIME_FADEIN);
ScaleTo(1.5f);

View File

@ -237,11 +237,10 @@ namespace osu.Game.Screens.Play
{
base.LoadComplete();
Delay(250, true);
Content.Delay(250);
Content.FadeIn(250);
Delay(500, true);
Delay(500);
Schedule(() =>
{
sourceClock.Start();