Update font/size.

This commit is contained in:
Dean Herbert
2017-04-19 17:32:18 +09:00
parent 662544e04f
commit 1f7ed72dc6
3 changed files with 5 additions and 3 deletions

View File

@ -116,6 +116,7 @@ namespace osu.Game
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Exo2.0-BlackItalic"));
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Venera"));
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Venera-Light"));
OszArchiveReader.Register();

View File

@ -92,8 +92,8 @@ namespace osu.Game.Screens.Ranking
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Colour = colours.PinkDarker,
Y = 5,
TextSize = 60,
Y = 10,
TextSize = 56,
},
}
},
@ -321,6 +321,7 @@ namespace osu.Game.Screens.Ranking
public SlowScoreCounter(uint leading = 0) : base(leading)
{
DisplayedCountSpriteText.Shadow = false;
DisplayedCountSpriteText.Font = @"Venera-Light";
UseCommaSeparator = true;
}
}