2020-10-15 15:32:20 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Game.Graphics.Sprites;
|
2021-05-07 15:10:57 +08:00
|
|
|
using osu.Game.Screens.Play.HUD;
|
2020-10-16 17:37:24 +08:00
|
|
|
using osuTK;
|
2020-10-15 15:32:20 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Skinning
|
|
|
|
{
|
2021-05-13 16:06:00 +08:00
|
|
|
public class LegacyScoreCounter : GameplayScoreCounter, ISkinnableDrawable
|
2020-10-15 15:32:20 +08:00
|
|
|
{
|
|
|
|
protected override double RollingDuration => 1000;
|
|
|
|
protected override Easing RollingEasing => Easing.Out;
|
|
|
|
|
2021-06-08 20:22:35 +08:00
|
|
|
public bool UsesFixedAnchor { get; set; }
|
2021-06-07 11:47:47 +08:00
|
|
|
|
2021-05-10 21:36:20 +08:00
|
|
|
public LegacyScoreCounter()
|
2020-10-15 15:32:20 +08:00
|
|
|
: base(6)
|
|
|
|
{
|
|
|
|
Anchor = Anchor.TopRight;
|
|
|
|
Origin = Anchor.TopRight;
|
|
|
|
|
2020-10-16 17:37:24 +08:00
|
|
|
Scale = new Vector2(0.96f);
|
2020-10-15 15:56:05 +08:00
|
|
|
Margin = new MarginPadding(10);
|
2020-10-15 15:32:20 +08:00
|
|
|
}
|
|
|
|
|
2021-05-10 21:36:20 +08:00
|
|
|
protected sealed override OsuSpriteText CreateSpriteText() => new LegacySpriteText(LegacyFont.Score)
|
2021-03-07 07:18:31 +08:00
|
|
|
{
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
};
|
2020-10-15 15:32:20 +08:00
|
|
|
}
|
|
|
|
}
|