当前位置:   article > 正文

Unity 自定义编辑器时让子类继承父类的Inspector显示效果_unity 类面板中子类不显示父类变量

unity 类面板中子类不显示父类变量

官方文档里的 CustomEditor函数

namespace UnityEditor
{
    //
    // 摘要:
    //     Tells an Editor class which run-time type it's an editor for.
    public class CustomEditor : Attribute
    {
        //
        // 摘要:
        //     Defines which object type the custom editor class can edit.
        //
        // 参数:
        //   inspectedType:
        //     Type that this editor can edit.
        //
        //   editorForChildClasses:
        //     If true, child classes of inspectedType will also show this editor. Defaults
        //     to false.
        public CustomEditor(Type inspectedType);
        //
        // 摘要:
        //     Defines which object type the custom editor class can edit.
        //
        // 参数:
        //   inspectedType:
        //     Type that this editor can edit.
        //
        //   editorForChildClasses:
        //     If true, child classes of inspectedType will also show this editor. Defaults
        //     to false.
        public CustomEditor(Type inspectedType, bool editorForChildClasses);

        //
        // 摘要:
        //     If true, match this editor only if all non-fallback editors do not match. Defaults
        //     to false.
        public bool isFallback { get; set; }
    }
}
  • 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

在这里插入图片描述
CustomEditor有两个,调用第二个函数时第二个值为true就可以啦

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

闽ICP备14008679号