当前位置:首页 » 《随便一记》 » 正文

那些年我踩的坑(1)——Unity编辑器SerializedProperty.enumValueIndex_RaymondCL

16 人参与  2021年12月15日 12:51  分类 : 《随便一记》  评论

点击全文阅读


这个是我自己的坑,自己挖的坑,然后自己跳了下去

首先上结论,以后别再犯同样的错误:
SerializedProperty.enumValueIndex得到的是当前枚举值在所有值中的排序索引,不是枚举值!!!是enumValueIndex,是Index!!!不是enumValue!

错误的写法:


public enum EventType
{
    None = 0,
    Test = 2,
    Attack = 1,
    Test3 = 3,
    Damage = 4,
}

[System.Serializable]
public class ActionEvent
{
    public EventType eventType;
    public float atkValue;
    public float damageValue;
}

public class Actor : MonoBehaviour
{
    public ActionEvent actionEvent;
}

[CustomPropertyDrawer(typeof(ActionEvent), true)]
public class ActionEventDrawer : PropertyDrawer
{
    public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
    {
        using (new EditorGUI.PropertyScope(position, label, property))
        {
            SerializedProperty eventType = property.FindPropertyRelative("eventType");
            EditorGUI.PropertyField(position, eventType);
            position.y += EditorGUIUtility.singleLineHeight;
            //把enumValueIndex当成枚举值就是最大的错误
            switch (eventType.enumValueIndex)  
            {
                case (int)EventType.Attack:
                    EditorGUI.PropertyField(position, property.FindPropertyRelative("atkValue"));
                    break;
                case (int)EventType.Damage:
                    EditorGUI.PropertyField(position, property.FindPropertyRelative("damageValue"));
                    break;
            }
        }
    }
}

由于我的枚举被我从中间,删除了几个,导致枚举值不连续,因此最开始我使用Popup绘制时,一直以为是使用SerializedProperty.enumNames导致的问题,因为这个names是连续的数组,是对不上枚举值的,所以一直在这里改,一直没有注意到enumValueIndex的问题。

正确写法:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor;
using System;
[CustomPropertyDrawer(typeof(ActionEvent), true)]
public class ActionEventDrawer : PropertyDrawer
{
    public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
    {
        using (new EditorGUI.PropertyScope(position, label, property))
        {
            SerializedProperty eventType = property.FindPropertyRelative("eventType");
            EditorGUI.PropertyField(position, eventType);
            position.y += EditorGUIUtility.singleLineHeight;
            var eventTypeValue = Enum.GetValues(typeof(EventType)).GetValue(eventType.enumValueIndex);
            switch (eventTypeValue)  
            {
                case EventType.Attack:
                    EditorGUI.PropertyField(position, property.FindPropertyRelative("atkValue"));
                    break;
                case EventType.Damage:
                    EditorGUI.PropertyField(position, property.FindPropertyRelative("damageValue"));
                    break;
            }
        }
    }
}

我们在调试的窗口中可以看到枚举的值数组列:

var values = Enum.GetValues(typeof(FPSPlayerActionEventType));

在这里插入图片描述


点击全文阅读


本文链接:http://zhangshiyu.com/post/31606.html

枚举  错误  数组  
<< 上一篇 下一篇 >>

  • 评论(0)
  • 赞助本站

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

最新文章

  • 好看的秦依冉厉泽谦_秦依冉厉泽谦
  • 是图图的拥有牡丹命格的我嫁给五皇子,抛弃我的太子谢怀川,余思思,楼心月全书在线
  • 全文老婆成***后,王牌拆弹专家(张凯,张振华,林蕴)列表_全文老婆成***后,王牌拆弹专家
  • 逼我下乡?我闪婚嫁军官带娃暴富苏冉冉刘翠芬周牧深完本_逼我下乡?我闪婚嫁军官带娃暴富(苏冉冉刘翠芬周牧深)
  • 童养夫为了白月光想虐我?没关系我还有九个(崔清乐顾北寒)_童养夫为了白月光想虐我?没关系我还有九个(崔清乐顾北寒)
  • 代管班费小荷包三年后,青梅说我吞了180万(乔宇宁雨)全书免费_(乔宇宁雨)代管班费小荷包三年后,青梅说我吞了180万后续(乔宇宁雨)
  • 男友一家要我守规矩后,却悔疯了苏然完本_男友一家要我守规矩后,却悔疯了(苏然)
  • 重生打脸渣男毒闺蜜(陈亮张倩)全书免费_(陈亮张倩)重生打脸渣男毒闺蜜后续(陈亮张倩)
  • 全文和宗门断情绝义后,小可怜被大佬团宠了创作编写(江寻柳青青)列表_全文和宗门断情绝义后,小可怜被大佬团宠了创作编写
  • 和宗门断情绝义后,小可怜被大佬团宠了创作编写江寻柳青青完本_和宗门断情绝义后,小可怜被大佬团宠了创作编写(江寻柳青青)
  • 向导坐牢后,结果把狱友驯成忠犬桑虞陆擢完本_向导坐牢后,结果把狱友驯成忠犬(桑虞陆擢)
  • 姑姑爱开玩笑,藏我的录取通知书夏知妤_姑姑爱开玩笑,藏我的录取通知书夏知妤

    关于我们 | 我要投稿 | 免责申明

    Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1