2020-10-15 08:48:50 +00: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-07 07:29:10 +00:00
|
|
|
public class LegacyAccuracyCounter : GameplayAccuracyCounter, ISkinnableComponent
|
2020-10-15 08:48:50 +00:00
|
|
|
{
|
2021-05-10 13:36:20 +00:00
|
|
|
public LegacyAccuracyCounter()
|
2020-10-15 08:48:50 +00:00
|
|
|
{
|
2020-10-15 09:11:30 +00:00
|
|
|
Anchor = Anchor.TopRight;
|
2020-10-15 08:48:50 +00:00
|
|
|
Origin = Anchor.TopRight;
|
2020-10-15 09:11:30 +00:00
|
|
|
|
2020-10-16 09:34:14 +00:00
|
|
|
Scale = new Vector2(0.6f);
|
2020-10-15 09:24:28 +00:00
|
|
|
Margin = new MarginPadding(10);
|
2020-10-15 08:48:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[Resolved(canBeNull: true)]
|
|
|
|
private HUDOverlay hud { get; set; }
|
|
|
|
|
2021-05-10 13:36:20 +00:00
|
|
|
protected sealed override OsuSpriteText CreateSpriteText() => new LegacySpriteText(LegacyFont.Score)
|
2021-03-06 23:18:31 +00:00
|
|
|
{
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
};
|
2020-10-15 08:48:50 +00:00
|
|
|
}
|
|
|
|
}
|