Update ruleset selector design

This commit is contained in:
TheWildTree 2020-03-24 22:14:15 +01:00
parent a5781d7fc5
commit 05de65937b
2 changed files with 4 additions and 1 deletions

View File

@ -22,7 +22,7 @@ namespace osu.Game.Overlays
{ {
AutoSizeAxes = Axes.Both, AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal, Direction = FillDirection.Horizontal,
Spacing = new Vector2(25, 0), Spacing = new Vector2(20, 0),
}; };
} }
} }

View File

@ -12,6 +12,7 @@ using osu.Game.Rulesets;
using osuTK.Graphics; using osuTK.Graphics;
using osuTK; using osuTK;
using osu.Framework.Allocation; using osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
namespace osu.Game.Overlays namespace osu.Game.Overlays
{ {
@ -53,6 +54,8 @@ namespace osu.Game.Overlays
Origin = Anchor.Centre, Origin = Anchor.Centre,
Anchor = Anchor.Centre, Anchor = Anchor.Centre,
Text = value.Name, Text = value.Name,
Font = OsuFont.GetFont(size: 14),
ShadowColour = Color4.Black.Opacity(0.75f)
} }
}, },
new HoverClickSounds() new HoverClickSounds()