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

fixed leading "0"s not being present infront of decimal floats

This commit is contained in:
mk-56 2022-01-27 00:10:15 +01:00
parent c17ff49427
commit 35be0f24d0

View File

@ -27,9 +27,9 @@ namespace osu.Game.Rulesets.Osu.Mods
[SettingSource("Strength")]
public BindableDouble WiggleStrength { get; } = new BindableDouble(1)
{
MinValue = .1f,
MinValue = 0.1f,
MaxValue = 2f,
Precision = .1f
Precision = 0.1f
};
[SettingSource("Duration", "Milliseconds per wiggle")]