mirror of
https://github.com/ppy/osu
synced 2025-02-10 15:17:32 +00:00
Move other score components to centre alignment (and switch font).
This commit is contained in:
parent
ca6946c7a2
commit
53e40804ab
@ -15,17 +15,19 @@ namespace osu.Game.Modes.Osu.UI
|
||||
{
|
||||
protected override ScoreCounter CreateScoreCounter() => new ScoreCounter()
|
||||
{
|
||||
Anchor = Anchor.TopRight,
|
||||
Origin = Anchor.TopRight,
|
||||
TextSize = 60,
|
||||
Anchor = Anchor.TopCentre,
|
||||
Origin = Anchor.TopCentre,
|
||||
TextSize = 40,
|
||||
Position = new Vector2(0, 30),
|
||||
Margin = new MarginPadding { Right = 5 },
|
||||
};
|
||||
|
||||
protected override PercentageCounter CreateAccuracyCounter() => new PercentageCounter()
|
||||
{
|
||||
Anchor = Anchor.TopRight,
|
||||
Origin = Anchor.TopRight,
|
||||
Position = new Vector2(0, 55),
|
||||
Anchor = Anchor.TopCentre,
|
||||
Origin = Anchor.TopCentre,
|
||||
Position = new Vector2(0, 65),
|
||||
TextSize = 20,
|
||||
Margin = new MarginPadding { Right = 5 },
|
||||
};
|
||||
|
||||
|
@ -107,7 +107,10 @@ namespace osu.Game.Graphics.UserInterface
|
||||
{
|
||||
Children = new Drawable[]
|
||||
{
|
||||
DisplayedCountSpriteText = new OsuSpriteText(),
|
||||
DisplayedCountSpriteText = new OsuSpriteText()
|
||||
{
|
||||
Font = @"Venera"
|
||||
},
|
||||
};
|
||||
|
||||
TextSize = 40;
|
||||
|
Loading…
Reference in New Issue
Block a user