1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 12:17:26 +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
parent bb9adb01c6
commit 4732c8a06c

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;