首页 > 编程语言 > 详细

Unity 在Inspector面板上实现多选枚举

时间:2020-05-20 22:59:05      阅读:377      评论:0      收藏:0      [点我收藏+]
using UnityEngine;
using UnityEditor;

///<summary>
///定义多选属性
///</summary>
public class EnumFlags : PropertyAttribute{}

///<summary>
///绘制多选属性
///</summary>
[CustomPropertyDrawer(typeof(EnumFlags))]
public class EnumFlagsDrawer : PropertyDrawer
{
    public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
    {
        property.intValue = EditorGUI.MaskField(position, label, property.intValue, property.enumNames);
    }
}


//在需要多选的枚举变量的声明上加上EnumFlags属性标签,如:
[Hear("这里是标题")]
[EnumFlags] //这里是EnumFlags属性标签
public EnumType enumType;
 

效果如图

技术分享图片

 

Unity 在Inspector面板上实现多选枚举

原文:https://www.cnblogs.com/KingR/p/12926851.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!