Changed limit class to default at -180 to 180 bounds

This commit is contained in:
jonbons 2024-05-04 12:55:49 -05:00
parent 61b313507e
commit e8ce390c27
No known key found for this signature in database

View File

@ -110,8 +110,8 @@ public class Plugin : BaseUnityPlugin
{
public Limit()
{
lower = 0;
upper = 360;
lower = -180;
upper = 180;
}
public Limit(float low, float up)
{