Skip to content

Commit

Permalink
Adjust health bar outer stroke colour
Browse files Browse the repository at this point in the history
  • Loading branch information
frenzibyte committed Sep 30, 2023
1 parent 319208c commit a331fb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Game/Screens/Play/HUD/ArgonHealthDisplay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ private partial class BackgroundPath : SmoothPath
protected override Color4 ColourAt(float position)
{
if (position <= 0.128f)
return Color4.White.Opacity(0.3f);
return Color4.White.Opacity(0.5f);

position -= 0.128f;
return Interpolation.ValueAt(Math.Clamp(position, 0f, 1f), Color4.White.Opacity(0.5f), Color4.Black.Opacity(0.5f), -0.75f, 1f, Easing.OutQuart);
Expand Down

0 comments on commit a331fb9

Please sign in to comment.