1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-13 08:32:57 +08:00

Use comma separator for tournament score displays

This commit is contained in:
Dean Herbert 2021-10-10 16:06:12 +09:00
parent 49a878dc20
commit 446f091d32
2 changed files with 2 additions and 4 deletions

View File

@ -132,6 +132,7 @@ namespace osu.Game.Tournament.Screens.Gameplay.Components
private OsuSpriteText displayedSpriteText;
public MatchScoreCounter()
: base(useCommaSeparator: true)
{
Margin = new MarginPadding { Top = bar_height, Horizontal = 10 };
}

View File

@ -4,11 +4,9 @@
using System;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Extensions.LocalisationExtensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Localisation;
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using osu.Game.Graphics.UserInterface;
@ -153,6 +151,7 @@ namespace osu.Game.Screens.Play.HUD
private OsuSpriteText displayedSpriteText;
public MatchScoreCounter()
: base(useCommaSeparator: true)
{
Margin = new MarginPadding { Top = bar_height, Horizontal = 10 };
}
@ -173,8 +172,6 @@ namespace osu.Game.Screens.Play.HUD
=> displayedSpriteText.Font = winning
? OsuFont.Torus.With(weight: FontWeight.Bold, size: font_size, fixedWidth: true)
: OsuFont.Torus.With(weight: FontWeight.Regular, size: font_size * 0.8f, fixedWidth: true);
protected override LocalisableString FormatCount(double count) => count.ToLocalisableString(@"N0");
}
}
}