1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 09:27:29 +08:00

Adjust spacing and clean up code

This commit is contained in:
Dean Herbert 2023-07-23 17:05:04 +09:00
parent 3b47949ace
commit 7e4e96a4a9

View File

@ -93,6 +93,11 @@ namespace osu.Game.Tournament.Screens.Gameplay.Components
scoreDiffText = new MatchScoreDiffCounter
{
Anchor = Anchor.TopCentre,
Margin = new MarginPadding
{
Top = bar_height / 4,
Horizontal = 8
},
Alpha = 0
}
};
@ -168,14 +173,9 @@ namespace osu.Game.Tournament.Screens.Gameplay.Components
private partial class MatchScoreDiffCounter : CommaSeparatedScoreCounter
{
public MatchScoreDiffCounter()
{
Margin = new MarginPadding { Top = bar_height / 4, Horizontal = 10 };
}
protected override OsuSpriteText CreateSpriteText() => base.CreateSpriteText().With(s =>
{
s.Spacing = new Vector2(-1);
s.Spacing = new Vector2(-2);
s.Font = OsuFont.Torus.With(weight: FontWeight.Regular, size: bar_height, fixedWidth: true);
});
}