1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-19 23:01:03 +08:00

Fix non-miss drawable judgements fading out instantly on triangles skin

`else if` proves to be insidious once again.
This commit is contained in:
Bartłomiej Dach
2024-01-22 14:23:46 +01:00
Unverified
parent 47e9846315
commit 17d05b0fdf
@@ -49,8 +49,10 @@ namespace osu.Game.Rulesets.Judgements
this.ScaleTo(1.2f, 100, Easing.In);
this.FadeOutFromOne(400);
return;
}
else if (Result.IsMiss())
if (Result.IsMiss())
{
this.ScaleTo(1.6f);
this.ScaleTo(1, 100, Easing.In);
@@ -60,9 +62,9 @@ namespace osu.Game.Rulesets.Judgements
this.RotateTo(0);
this.RotateTo(40, 800, Easing.InQuint);
this.FadeOutFromOne(800);
}
this.FadeOutFromOne(800);
}
public Drawable? GetAboveHitObjectsProxiedContent() => null;