2020-10-15 16:48:50 +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.Allocation;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Game.Graphics.Sprites;
|
|
|
|
using osu.Game.Screens.Play;
|
|
|
|
using osu.Game.Screens.Play.HUD;
|
|
|
|
using osuTK;
|
|
|
|
|
|
|
|
namespace osu.Game.Skinning
|
|
|
|
{
|
2021-05-13 16:06:00 +08:00
|
|
|
public class LegacyAccuracyCounter : GameplayAccuracyCounter, ISkinnableDrawable
|
2020-10-15 16:48:50 +08:00
|
|
|
{
|
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 LegacyAccuracyCounter()
|
2020-10-15 16:48:50 +08:00
|
|
|
{
|
2020-10-15 17:11:30 +08:00
|
|
|
Anchor = Anchor.TopRight;
|
2020-10-15 16:48:50 +08:00
|
|
|
Origin = Anchor.TopRight;
|
2020-10-15 17:11:30 +08:00
|
|
|
|
2020-10-16 17:34:14 +08:00
|
|
|
Scale = new Vector2(0.6f);
|
2020-10-15 17:24:28 +08:00
|
|
|
Margin = new MarginPadding(10);
|
2020-10-15 16:48:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
[Resolved(canBeNull: true)]
|
|
|
|
private HUDOverlay hud { get; set; }
|
|
|
|
|
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 16:48:50 +08:00
|
|
|
}
|
|
|
|
}
|