0

我有一个名为 ToggledFloat 的类。它包装了一个浮点数,但还添加了一个布尔值,告诉它是否启用。

[System.Serializable]
public class ToggledFloat
{
    public float value;
    public bool enabled = false;
}

[System.Serializable]
public class ClassWIthNestedProp
{
    public ToggledFloat aTogFloat;
}

public class Test : MonoBehaviour
{
    public ClassWIthNestedProp eCA;
    public ToggledFloat tF;
}

我可以轻松地为此制作一个自定义属性抽屉,当编辑器在缩进级别“0”处绘制此属性时,它看起来是正确的。但是,当我查看嵌套在另一个属性中的 ToggledFloat 属性时,它们看起来是错误的。

我的 propertyDrawer 看起来像这样:

[CustomPropertyDrawer(typeof(ToggledFloat))]
public class ToggledPropertyEditor : PropertyDrawer
{

    public override float GetPropertyHeight (SerializedProperty property, GUIContent label)
    {
        var propVal = property.FindPropertyRelative("value");
        float contentUnfoldedHeight = EditorGUI.GetPropertyHeight (propVal, label);
        return contentUnfoldedHeight;
    }

    // Draw the property inside the given rect
    public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
    {
        int iL = EditorGUI.indentLevel;
        //EditorGUI.indentLevel = 0; //- Set this to "0" to make thing work but non-indented
        SerializedProperty valueProp = property.FindPropertyRelative("value");
        SerializedProperty enabledProp = property.FindPropertyRelative("enabled");

        //Label left of checkbox
        float labelWidth = GUI.skin.label.CalcSize(label).x;
        Rect labelRect = new Rect(0/*position.x*/, position.y, labelWidth, 16);
        EditorGUI.LabelField(labelRect, label, GUIContent.none);
        EditorGUI.DrawRect(labelRect, new Color(0,0,1,.1f));

        //Checkbox
        Rect enableRect = new Rect();
        enableRect.xMin = labelRect.xMax;
        enableRect.yMin = labelRect.yMin;
        enableRect.width = 16;
        enableRect.height = 16;
        EditorGUI.PropertyField(enableRect, enabledProp, GUIContent.none);
        EditorGUI.DrawRect(enableRect, new Color(0,1,0,.1f));

        //Value
        Rect valueRect = new Rect();
        valueRect.xMin = enableRect.xMax;
        valueRect.yMin = enableRect.yMin;
        valueRect.xMax = position.xMax;
        valueRect.yMax = position.yMax;

        EditorGUI.DrawRect(valueRect, new Color(1,0,0,.1f));
        bool enabled = GUI.enabled;
        GUI.enabled = enabledProp.boolValue;
        EditorGUI.PropertyField(valueRect, valueProp, new GUIContent(""), true);
        GUI.enabled = enabled;
        EditorGUI.indentLevel = iL;

    }
}

当检查器绘制类 Test 的实例时,它看起来像这样: 在此处输入图像描述

彩色矩形只是为了让我调试这些矩形的实际位置。奇怪的是文本标签从彩色矩形偏移,即使它们得到与参数相同的矩形。如果我想在我的检查器中使用彩色矩形,这当然只是一个问题 - 但真正的问题是,这个偏移问题似乎导致嵌套复选框不起作用。我无法单击嵌套属性上的复选框。

如果我随后显式设置 EditorGUI.IndenLevel = 0,则彩色矩形和标签重合,并且切换按钮正常工作 - 但我随后会松开我真正想使用的自动缩进。

在此处输入图像描述

谁能告诉我我忽略了什么

4

1 回答 1

0

DrawRect 方法不考虑缩进级别。您必须自己调整 rect 才能绘制缩进矩形。幸运的是,有一个函数可以获取预期的矩形。

来自 UnityCsReference EditorGUI

static void DrawIndentedRect(Rect rect, Color color)
{
    EditorGUI.DrawRect(EditorGUI.IndentedRect(rect), color);
}

捕获的 Inspector IndentedRect

但是它不能正常工作。

IndentedRect 的实现来看,它减小了 rect 的宽度。

static void DrawIndentedRect(Rect rect, Color color)
{
    // Indent per level is 15
    rect.x += EditorGUI.indentLevel * 15;
    EditorGUI.DrawRect(rect, color);
}

或者

static void DrawIndentedRect(Rect rect, Color color)
{
    var indentedRect = EditorGUI.IndentedRect(rect);
    indentedRect.width = rect.width;
    EditorGUI.DrawRect(indentedRect, color);
}

捕获的 Inspector DrawIndentedRect

于 2018-09-12T18:27:52.690 回答