mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 06:36:31 +09:00
fixed leading "0"s not being present infront of decimal floats
This commit is contained in:
@ -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")]
|
||||
|
Reference in New Issue
Block a user