1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-27 16:10:16 +08:00

fix angle sharpness slider value from not always scaling by 0.5

This commit is contained in:
alix
2023-05-11 13:46:07 -04:00
Unverified
parent bb9adb01c6
commit 4732c8a06c
+1 -1
View File
@@ -33,7 +33,7 @@ namespace osu.Game.Rulesets.Osu.Mods
{
MinValue = 1,
MaxValue = 10,
Precision = 0.1f
Precision = 0.5f
};
private static readonly float playfield_diagonal = OsuPlayfield.BASE_SIZE.LengthFast;