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

Clear transformations with more fire

This commit is contained in:
Dean Herbert 2023-12-13 17:00:21 +09:00
parent f2c6c348be
commit 3131d37621
No known key found for this signature in database
2 changed files with 8 additions and 2 deletions

View File

@ -488,7 +488,10 @@ namespace osu.Game.Screens.Play.HUD.HitErrorMeters
public override void Clear()
{
foreach (var j in judgementsContainer)
j.FadeOut().Expire();
{
j.ClearTransforms();
j.Expire();
}
}
public enum CentreMarkerStyles

View File

@ -66,7 +66,10 @@ namespace osu.Game.Screens.Play.HUD.HitErrorMeters
public override void Clear()
{
foreach (var j in judgementsFlow)
j.FadeOut().Expire();
{
j.ClearTransforms();
j.Expire();
}
}
private partial class JudgementFlow : FillFlowContainer<HitErrorShape>