1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 15:22:55 +08:00

Expand allowable rotation range to [-360, 360]

This commit is contained in:
Bartłomiej Dach 2023-08-19 15:09:59 +02:00
parent 3d52a1267e
commit 3c191ff9ea
No known key found for this signature in database

View File

@ -45,8 +45,8 @@ namespace osu.Game.Rulesets.Osu.Edit
{ {
Current = new BindableNumber<float> Current = new BindableNumber<float>
{ {
MinValue = -180, MinValue = -360,
MaxValue = 180, MaxValue = 360,
Precision = 1 Precision = 1
}, },
Instantaneous = true Instantaneous = true