1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-05 02:23:38 +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
Unverified
parent 3d52a1267e
commit 3c191ff9ea
@@ -45,8 +45,8 @@ namespace osu.Game.Rulesets.Osu.Edit
{
Current = new BindableNumber<float>
{
MinValue = -180,
MaxValue = 180,
MinValue = -360,
MaxValue = 360,
Precision = 1
},
Instantaneous = true