refactor: modify the value when the field is changed
parent
13223b2d74
commit
d9eb91c120
|
@ -250,20 +250,27 @@ namespace Coffee.UIExtensions
|
||||||
EditorGUILayout.BeginHorizontal();
|
EditorGUILayout.BeginHorizontal();
|
||||||
if (showXyz)
|
if (showXyz)
|
||||||
{
|
{
|
||||||
|
EditorGUI.BeginChangeCheck();
|
||||||
EditorGUILayout.PropertyField(sp);
|
EditorGUILayout.PropertyField(sp);
|
||||||
|
if (EditorGUI.EndChangeCheck())
|
||||||
|
{
|
||||||
|
x.floatValue = Mathf.Max(0.001f, x.floatValue);
|
||||||
|
y.floatValue = Mathf.Max(0.001f, y.floatValue);
|
||||||
|
z.floatValue = Mathf.Max(0.001f, z.floatValue);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
EditorGUI.BeginChangeCheck();
|
EditorGUI.BeginChangeCheck();
|
||||||
EditorGUILayout.PropertyField(x, s_ContentScale);
|
EditorGUILayout.PropertyField(x, s_ContentScale);
|
||||||
if (EditorGUI.EndChangeCheck())
|
if (EditorGUI.EndChangeCheck())
|
||||||
z.floatValue = y.floatValue = x.floatValue;
|
{
|
||||||
|
x.floatValue = Mathf.Max(0.001f, x.floatValue);
|
||||||
|
y.floatValue = Mathf.Max(0.001f, x.floatValue);
|
||||||
|
z.floatValue = Mathf.Max(0.001f, x.floatValue);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (x.floatValue < 0.001f) x.floatValue = 0.001f;
|
|
||||||
if (y.floatValue < 0.001f) y.floatValue = 0.001f;
|
|
||||||
if (z.floatValue < 0.001f) z.floatValue = 0.001f;
|
|
||||||
|
|
||||||
EditorGUI.BeginChangeCheck();
|
EditorGUI.BeginChangeCheck();
|
||||||
showXyz = GUILayout.Toggle(showXyz, s_Content3D, EditorStyles.miniButton, GUILayout.Width(30));
|
showXyz = GUILayout.Toggle(showXyz, s_Content3D, EditorStyles.miniButton, GUILayout.Width(30));
|
||||||
if (EditorGUI.EndChangeCheck() && !showXyz)
|
if (EditorGUI.EndChangeCheck() && !showXyz)
|
||||||
|
|
Loading…
Reference in New Issue