Merge pull request #9688 from peppy/less-spinner-bonus-score

Reduce spinner tick and bonus score
This commit is contained in:
Dean Herbert
2020-07-28 14:21:48 +09:00
committed by GitHub
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);
}