Make all inheritors of drawablejudgement use new method

This commit is contained in:
David Zhao
2019-03-12 19:52:44 +09:00
parent 7eb253b687
commit 527b77b07d
2 changed files with 6 additions and 11 deletions

View File

@ -39,12 +39,10 @@ namespace osu.Game.Rulesets.Taiko.UI
}
}
protected override void LoadComplete()
protected override void ApplyHitAnimations()
{
if (Result.IsHit)
this.MoveToY(-100, 500);
base.LoadComplete();
this.MoveToY(-100, 500);
base.ApplyHitAnimations();
}
}
}