Fix display of bonus score

This commit is contained in:
Dean Herbert
2020-07-28 11:22:58 +09:00
parent 06c4fb7171
commit dc577aa6fa
4 changed files with 8 additions and 4 deletions

View File

@ -36,7 +36,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Pieces
return;
displayedCount = count;
bonusCounter.Text = $"{1000 * count}";
bonusCounter.Text = $"{SpinnerBonusTick.SCORE_PER_TICK * count}";
bonusCounter.FadeOutFromOne(1500);
bonusCounter.ScaleTo(1.5f).Then().ScaleTo(1f, 1000, Easing.OutQuint);
}