1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-03 15:04:26 +08:00

Adjust skip button colour and add triangles

This commit is contained in:
Salman Alshamrani
2025-12-04 13:38:28 -05:00
Unverified
parent fc74726d11
commit 1c33291b3f
+8 -3
View File
@@ -93,7 +93,7 @@ namespace osu.Game.Screens.Play
Height = 5,
Anchor = Anchor.BottomCentre,
Origin = Anchor.BottomCentre,
Colour = colours.Yellow,
Colour = colours.Orange3,
RelativeSizeAxes = Axes.X
}
}
@@ -328,8 +328,8 @@ namespace osu.Game.Screens.Play
[BackgroundDependencyLoader]
private void load(OsuColour colours, AudioManager audio)
{
colourNormal = colours.Yellow;
colourHover = colours.YellowDark;
colourNormal = colours.Orange3;
colourHover = colours.Orange4;
sampleConfirm = audio.Samples.Get(@"UI/submit-select");
@@ -356,6 +356,11 @@ namespace osu.Game.Screens.Play
RelativeSizeAxes = Axes.Both,
Colour = colourNormal,
},
new TrianglesV2
{
RelativeSizeAxes = Axes.Both,
Colour = ColourInfo.GradientVertical(colourNormal.Lighten(0.2f), colourNormal)
},
flow = new FillFlowContainer
{
Anchor = Anchor.TopCentre,