mirror of
https://github.com/osukey/osukey.git
synced 2025-08-08 09:03:50 +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")]
|
[SettingSource("Strength")]
|
||||||
public BindableDouble WiggleStrength { get; } = new BindableDouble(1)
|
public BindableDouble WiggleStrength { get; } = new BindableDouble(1)
|
||||||
{
|
{
|
||||||
MinValue = .1f,
|
MinValue = 0.1f,
|
||||||
MaxValue = 2f,
|
MaxValue = 2f,
|
||||||
Precision = .1f
|
Precision = 0.1f
|
||||||
};
|
};
|
||||||
|
|
||||||
[SettingSource("Duration", "Milliseconds per wiggle")]
|
[SettingSource("Duration", "Milliseconds per wiggle")]
|
||||||
|
Reference in New Issue
Block a user