mirror of
https://github.com/ppy/osu
synced 2025-01-17 11:30:52 +00:00
Update obsoleted font usages
This commit is contained in:
parent
e7409a28a3
commit
530032cafe
@ -6,6 +6,7 @@ using osu.Framework.Graphics;
|
||||
using osu.Framework.Graphics.Containers;
|
||||
using osu.Framework.Graphics.Sprites;
|
||||
using osu.Framework.Graphics.Textures;
|
||||
using osu.Game.Graphics;
|
||||
using osu.Game.Graphics.Sprites;
|
||||
|
||||
namespace osu.Game.Tournament.Components
|
||||
@ -30,7 +31,7 @@ namespace osu.Game.Tournament.Components
|
||||
AcronymText = new OsuSpriteText
|
||||
{
|
||||
Text = team?.Acronym?.ToUpperInvariant() ?? string.Empty,
|
||||
Font = @"Exo2.0-Regular"
|
||||
Font = OsuFont.GetFont(weight: FontWeight.Regular),
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -86,7 +86,7 @@ namespace osu.Game.Tournament.Components
|
||||
Text = new LocalisedString((
|
||||
$"{Beatmap.Metadata.ArtistUnicode} - {Beatmap.Metadata.TitleUnicode}",
|
||||
$"{Beatmap.Metadata.Artist} - {Beatmap.Metadata.Title}")),
|
||||
Font = @"Exo2.0-BoldItalic",
|
||||
Font = OsuFont.GetFont(weight: FontWeight.Bold, italics: true),
|
||||
},
|
||||
new FillFlowContainer
|
||||
{
|
||||
|
@ -183,7 +183,7 @@ namespace osu.Game.Tournament.Screens.Ladder.Components
|
||||
|
||||
background.FadeColour(winner ? colourWinner : colourNormal, winner ? 500 : 0, Easing.OutQuint);
|
||||
|
||||
scoreText.Font = AcronymText.Font = winner ? "Exo2.0-Bold" : "Exo2.0-Regular";
|
||||
scoreText.Font = AcronymText.Font = OsuFont.GetFont(weight: winner ? FontWeight.Bold : FontWeight.Regular);
|
||||
}
|
||||
|
||||
public MenuItem[] ContextMenuItems
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
using osu.Framework.Graphics;
|
||||
using osu.Framework.Graphics.Containers;
|
||||
using osu.Game.Graphics;
|
||||
using osu.Game.Graphics.Sprites;
|
||||
using osuTK.Graphics;
|
||||
|
||||
@ -29,7 +30,7 @@ namespace osu.Game.Tournament.Screens.Ladder.Components
|
||||
new OsuSpriteText
|
||||
{
|
||||
Text = ((losers ? "Losers " : "") + grouping.Name).ToUpper(),
|
||||
Font = "Exo2.0-Bold",
|
||||
Font = OsuFont.GetFont(weight: FontWeight.Bold),
|
||||
Colour = Color4.Black,
|
||||
Origin = Anchor.TopCentre,
|
||||
Anchor = Anchor.TopCentre
|
||||
|
Loading…
Reference in New Issue
Block a user