1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 11:20:04 +08:00

Remove argon health display bar length setting

It is no longer needed.

Intentionally not doing backwards migration to simplify things; users
can fix their skins.
This commit is contained in:
Bartłomiej Dach 2023-11-10 18:18:45 +09:00
parent 2c1f304f3b
commit 374e13b496
No known key found for this signature in database

View File

@ -35,14 +35,6 @@ namespace osu.Game.Screens.Play.HUD
Precision = 1
};
[SettingSource("Bar length")]
public BindableFloat BarLength { get; } = new BindableFloat(0.98f)
{
MinValue = 0.2f,
MaxValue = 1,
Precision = 0.01f,
};
private BarPath mainBar = null!;
/// <summary>
@ -140,7 +132,6 @@ namespace osu.Game.Screens.Play.HUD
Current.BindValueChanged(_ => Scheduler.AddOnce(updateCurrent), true);
BarLength.BindValueChanged(l => Width = l.NewValue, true);
BarHeight.BindValueChanged(_ => updatePath());
updatePath();
}