1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 19:13:20 +08:00

Update OsuSliderBar colours to not use transparency

This commit is contained in:
Dean Herbert 2022-07-01 14:35:47 +09:00
parent 42d56aa640
commit 3785027284

View File

@ -111,7 +111,6 @@ namespace osu.Game.Graphics.UserInterface
RelativeSizeAxes = Axes.None,
Anchor = Anchor.CentreRight,
Origin = Anchor.CentreRight,
Alpha = 0.5f,
},
},
},
@ -137,7 +136,7 @@ namespace osu.Game.Graphics.UserInterface
{
sample = audio.Samples.Get(@"UI/notch-tick");
AccentColour = colourProvider?.Highlight1 ?? colours.Pink;
BackgroundColour = colourProvider?.Background5 ?? colours.Pink.Opacity(0.5f);
BackgroundColour = colourProvider?.Background5 ?? colours.PinkDarker.Darken(1);
}
protected override void Update()