当前位置:   article > 正文

Unity 创建自定义属性绘制器_unity editor 如何绘制自定义结构

unity editor 如何绘制自定义结构

Unity 创建自定义属性绘制器

简介:

Unity自带了一些属性绘制的特性
[Header]
[Tooltip]
[ContextMenu]
[ContextMenuItem]
[Space]
… …

自定义:

如果我们需要自定义类似于Unity提供的特性,那就需要通过自己实现逻辑

实现案例:

通过标签,使自定义的字段由整数显示成为时间的形式(时分秒)

1.创建属性
public class TimeAttribute : PropertyAttribute
{
    public readonly bool DisplayHours;
    public TimeAttribute(bool displayHours = false)
    {
        DisplayHours = displayHours;
    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
2.定义绘制器
[CustomPropertyDrawer(typeof(TimeAttribute))]
public class TimeDrawer : PropertyDrawer
{
    public override float GetPropertyHeight(SerializedProperty property, GUIContent label)
    {
        return EditorGUI.GetPropertyHeight(property) * 2;
    }

    public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
    {
        if (property.propertyType == SerializedPropertyType.Integer)
        {
            property.intValue = EditorGUI.IntField(
                new Rect(position.x, position.y, position.width, position.height / 2),
                label, Mathf.Max(0, property.intValue));
            EditorGUI.LabelField(
                new Rect(position.x, position.y+position.height / 2,position.width, position.height / 2),
                TimeConverter(property.intValue));
        }
        else
        {
            EditorGUI.HelpBox(position, "类型必须为Int", MessageType.Error);
        }
    }

    private string TimeConverter(int num)
    {
        if (attribute is TimeAttribute time)
        {
            if (time.DisplayHours)
            {
                var hours = num / 3600;
                var minutes = num % 3600 / 60;
                var seconds = num % 60;
                return $"{hours}:{minutes.ToString().PadLeft(2, '0')}:{seconds.ToString().PadLeft(2, '0')}";
            }
            else
            {
                var minutes = num % 3600 / 60;
                var seconds = num % 60;
                return $"{minutes.ToString().PadLeft(2, '0')}:{seconds.ToString().PadLeft(2, '0')}";
            }
        }

        return string.Empty;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
3.对脚本自定义
[CustomEditor(typeof(TimeTest))]
[CanEditMultipleObjects]
public class TimeInspectorEditor : Editor
{
    private SerializedProperty _serializedA;
    private SerializedProperty _serializedB;
    private SerializedProperty _serializedC;
    private void OnEnable()
    {
        _serializedA = serializedObject.FindProperty("a");
        _serializedB = serializedObject.FindProperty("b");
        _serializedC = serializedObject.FindProperty("c");
    }

    public override void OnInspectorGUI()
    {
        serializedObject.Update();

        GUILayout.BeginVertical("box");
        {
            EditorGUILayout.PropertyField(_serializedA);
            EditorGUILayout.PropertyField(_serializedB);
            EditorGUILayout.PropertyField(_serializedC);
        }
        GUILayout.EndVertical();
        
        serializedObject.ApplyModifiedProperties();
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
4.测试脚本
public class TimeTest : MonoBehaviour
{
    [Time] public int a = 3900;
    [Time(true)] public int b = 9000;
    [Time] public float c = 3900f;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
5.实现效果

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/106489
推荐阅读
相关标签
  

闽ICP备14008679号