Add HitWindows to JudgementResult to indicate timing errors

This commit is contained in:
smoogipoo
2019-09-02 16:28:14 +09:00
parent f3656475de
commit f2bdf94a1d
10 changed files with 34 additions and 14 deletions

View File

@ -49,6 +49,9 @@ namespace osu.Game.Screens.Play.HUD
private void onNewJudgement(JudgementResult result)
{
if (result.HitWindows == null)
return;
foreach (var c in Children)
c.OnNewJudgement(result);
}