make spm counter show up automatically with spun out

This commit is contained in:
mcendu 2020-02-09 13:49:08 +08:00
parent d314b38699
commit 68873830aa
No known key found for this signature in database
GPG Key ID: FBCD5D45163D6364

View File

@ -177,7 +177,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
protected override void Update()
{
Disc.Tracking = OsuActionInputManager?.PressedActions.Any(x => x == OsuAction.LeftButton || x == OsuAction.RightButton) ?? false;
if (!SpmCounter.IsPresent && Disc.Tracking)
if (!SpmCounter.IsPresent && (Disc.Tracking || !Disc.Enabled))
SpmCounter.FadeIn(HitObject.TimeFadeIn);
base.Update();