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

Provides higher precision settings

This commit is contained in:
cdwcgt 2023-05-27 23:25:01 +09:00
parent 318431a1b7
commit ec61840e7d
No known key found for this signature in database
GPG Key ID: 144396D01095C3A2

View File

@ -37,8 +37,8 @@ namespace osu.Game.Rulesets.Mods
public BindableNumber<double> MinimumAccuracy { get; } = new BindableDouble
{
MinValue = 0.60,
MaxValue = 0.99,
Precision = 0.01,
MaxValue = 0.9999,
Precision = 0.0001,
Default = 0.9,
Value = 0.9,
};