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:
parent
f2c6c348be
commit
3131d37621
@ -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
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user