mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 12:23:22 +08:00
fixed leading "0"s not being present infront of decimal floats
This commit is contained in:
parent
c17ff49427
commit
35be0f24d0
@ -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")]
|
||||
|
Loading…
Reference in New Issue
Block a user