1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-30 05:19:55 +08:00

Update ScoreCounter components to bind outwards

This commit is contained in:
Dean Herbert
2021-05-07 16:10:57 +09:00
Unverified
parent ee23124bb1
commit a2e4fb5b6b
8 changed files with 60 additions and 95 deletions
@@ -4,11 +4,10 @@
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Game.Graphics.Sprites;
using osu.Game.Screens.Play.HUD;
namespace osu.Game.Graphics.UserInterface
{
public abstract class ScoreCounter : RollingCounter<double>, IScoreCounter
public abstract class ScoreCounter : RollingCounter<double>
{
protected override double RollingDuration => 1000;
protected override Easing RollingEasing => Easing.Out;