mirror of
https://github.com/ppy/osu.git
synced 2024-12-16 19:33:01 +08:00
Remove position fading
Unnecessary effect
This commit is contained in:
parent
598c02f8b9
commit
fdd00c0820
@ -126,8 +126,8 @@ namespace osu.Game.Screens.Play
|
||||
if (scorePosition.HasValue)
|
||||
positionText.Text = $"#{scorePosition.Value.ToMetric(decimals: scorePosition < 100000 ? 1 : 0)}";
|
||||
|
||||
positionText.FadeTo(scorePosition.HasValue ? 1 : 0, 100);
|
||||
positionSymbol.FadeTo(scorePosition.HasValue ? 1 : 0, 100);
|
||||
positionText.FadeTo(scorePosition.HasValue ? 1 : 0);
|
||||
positionSymbol.FadeTo(scorePosition.HasValue ? 1 : 0);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user