Auto update Allow full rotation flag for entities when changing their rotation

This commit is contained in:
dexy
2021-11-13 23:28:43 +11:00
Unverified
parent 89e838550f
commit 071830b3d7
2 changed files with 32 additions and 7 deletions
+7
View File
@@ -32,6 +32,13 @@ namespace CodeWalker.WinForms
UpdateFromValue();
}
}
public Vector3 EulerDeg
{
get
{
return new Vector3((float)EulerXUpDown.Value, (float)EulerYUpDown.Value, (float)EulerZUpDown.Value);
}
}
private Quaternion _Value = Quaternion.Identity;
private bool suppressEvents = false;