1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 21:52:55 +08:00

Adjust visuals slightly further (and remove double-gray application)

This commit is contained in:
Dean Herbert 2022-09-09 16:12:54 +09:00
parent f3fc8af6ee
commit bffc9555bf
2 changed files with 6 additions and 5 deletions

View File

@ -35,7 +35,7 @@ namespace osu.Game.Rulesets.Catch.Tests
} }
[Test] [Test]
public void TestInputField() public void TestBasic()
{ {
AddStep("show overlay", () => catchTouchInputMapper.Show()); AddStep("show overlay", () => catchTouchInputMapper.Show());
} }

View File

@ -63,7 +63,7 @@ namespace osu.Game.Rulesets.Catch.UI
{ {
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
Width = 0.5f, Width = 0.5f,
Colour = colours.GrayC, Colour = colours.Gray9,
Anchor = Anchor.TopRight, Anchor = Anchor.TopRight,
Origin = Anchor.TopRight, Origin = Anchor.TopRight,
}, },
@ -81,7 +81,7 @@ namespace osu.Game.Rulesets.Catch.UI
{ {
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
Width = 0.5f, Width = 0.5f,
Colour = colours.GrayC, Colour = colours.Gray9,
}, },
rightDashBox = new InputArea(TouchCatchAction.DashRight, trackedActionSources) rightDashBox = new InputArea(TouchCatchAction.DashRight, trackedActionSources)
{ {
@ -223,13 +223,14 @@ namespace osu.Game.Rulesets.Catch.UI
new Container new Container
{ {
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
Masking = true,
CornerRadius = 10,
Children = new Drawable[] Children = new Drawable[]
{ {
new Box new Box
{ {
RelativeSizeAxes = Axes.Both, RelativeSizeAxes = Axes.Both,
Alpha = 0.2f, Alpha = 0.15f,
Colour = OsuColour.Gray(0.8f),
}, },
highlightOverlay = new Box highlightOverlay = new Box
{ {