1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:47:27 +08:00

Attempt to make hold notes more legible at low background dims

This commit is contained in:
Dean Herbert 2022-10-07 20:43:26 +09:00
parent 589b764b77
commit 588713497d
2 changed files with 3 additions and 2 deletions

View File

@ -62,7 +62,7 @@ namespace osu.Game.Rulesets.Mania.Skinning.Argon
accentColour = column.AccentColour.GetBoundCopy();
accentColour.BindValueChanged(colour =>
{
background.Colour = colour.NewValue.Darken(3).Opacity(0.6f);
background.Colour = colour.NewValue.Darken(3).Opacity(0.8f);
brightColour = colour.NewValue.Opacity(0.6f);
dimColour = colour.NewValue.Opacity(0);
}, true);

View File

@ -32,6 +32,7 @@ namespace osu.Game.Rulesets.Mania.Skinning.Argon
// Without this, the width of the body will be slightly larger than the head/tail.
Masking = true;
CornerRadius = ArgonNotePiece.CORNER_RADIUS;
Blending = BlendingParameters.Additive;
}
[BackgroundDependencyLoader(true)]
@ -58,7 +59,7 @@ namespace osu.Game.Rulesets.Mania.Skinning.Argon
AccentColour.BindValueChanged(colour =>
{
background.Colour = colour.NewValue.Darken(1.5f);
background.Colour = colour.NewValue.Darken(1.2f);
foreground.Colour = colour.NewValue.Opacity(0.2f);
}, true);