Update ScoreCounter components to bind outwards

This commit is contained in:
Dean Herbert
2021-05-07 16:10:57 +09:00
parent ee23124bb1
commit a2e4fb5b6b
8 changed files with 60 additions and 95 deletions

View File

@ -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;