From 2135b93791e40cb194c62fef9b8d6bdcda9849fe Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Fri, 4 Nov 2016 12:28:00 +0900 Subject: [PATCH] Make options semi-transparent. --- osu.Game/Overlays/OptionsOverlay.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/osu.Game/Overlays/OptionsOverlay.cs b/osu.Game/Overlays/OptionsOverlay.cs index 31c329e381..36bc058c06 100644 --- a/osu.Game/Overlays/OptionsOverlay.cs +++ b/osu.Game/Overlays/OptionsOverlay.cs @@ -24,7 +24,7 @@ namespace osu.Game.Overlays { internal const float SideMargins = 10; private const float width = 400; - + public OptionsOverlay() { Depth = float.MaxValue; @@ -37,7 +37,8 @@ namespace osu.Game.Overlays new Box { RelativeSizeAxes = Axes.Both, - Colour = new Color4(51, 51, 51, 255) + Colour = Color4.Black, + Alpha = 0.8f, }, // TODO: Links on the side to jump to a section new ScrollContainer