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
1 changed files with 2 additions and 2 deletions

View File

@ -45,8 +45,8 @@ private void load()
{
Current = new BindableNumber<float>
{
MinValue = -180,
MaxValue = 180,
MinValue = -360,
MaxValue = 360,
Precision = 1
},
Instantaneous = true