Attribute : AngleDisplayAs - Displays either a radian or euler float as the opposite
This commit is contained in:
parent
6e3bd4df70
commit
df1d2f6df1
8 changed files with 89 additions and 1 deletions
51
Editor/Drawers/AngleDisplayAsAttributeDrawer.cs
Normal file
51
Editor/Drawers/AngleDisplayAsAttributeDrawer.cs
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
using Module.Inspector.Editor.Utilities;
|
||||
using UnityEditor;
|
||||
using UnityEngine;
|
||||
|
||||
namespace Module.Inspector.Editor
|
||||
{
|
||||
[CustomPropertyDrawer(typeof(AngleDisplayAsAttribute))]
|
||||
internal sealed class AngleDisplayAsAttributeDrawer : DrawerPropertyDrawer
|
||||
{
|
||||
public override bool Draw(Rect position, DrawerPropertyAttribute attribute, SerializedProperty property, GUIContent label, EditorPropertyUtility.Result result)
|
||||
{
|
||||
if (property.propertyType != SerializedPropertyType.Float)
|
||||
return false;
|
||||
|
||||
var att = (AngleDisplayAsAttribute)attribute;
|
||||
|
||||
EditorGUI.BeginChangeCheck();
|
||||
EditorGUI.BeginProperty(position, label, property);
|
||||
{
|
||||
if (att.type == EAngle.Euler)
|
||||
{
|
||||
float toEuler = Mathf.Rad2Deg * property.floatValue;
|
||||
float temp = EditorGUI.FloatField(position, label, toEuler) * Mathf.Deg2Rad;
|
||||
|
||||
if (!Mathf.Approximately(temp, property.floatValue))
|
||||
property.floatValue = temp;
|
||||
}
|
||||
else
|
||||
{
|
||||
float toRadian = Mathf.Deg2Rad * property.floatValue;
|
||||
float temp = EditorGUI.FloatField(position, label, toRadian) * Mathf.Rad2Deg;
|
||||
|
||||
if (!Mathf.Approximately(temp, property.floatValue))
|
||||
property.floatValue = temp;
|
||||
}
|
||||
}
|
||||
EditorGUI.EndProperty();
|
||||
bool changed = EditorGUI.EndChangeCheck();
|
||||
|
||||
if (changed)
|
||||
property.serializedObject.ApplyModifiedProperties();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public override string GetErrorMessage(SerializedProperty property)
|
||||
{
|
||||
return "Only supports floats";
|
||||
}
|
||||
}
|
||||
}
|
||||
3
Editor/Drawers/AngleDisplayAsAttributeDrawer.cs.meta
Normal file
3
Editor/Drawers/AngleDisplayAsAttributeDrawer.cs.meta
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 1cff7f97798e4a7081c733911b2420ea
|
||||
timeCreated: 1767540741
|
||||
Loading…
Add table
Add a link
Reference in a new issue