本文主要是介绍Unity-可分组折叠的Editor,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Unity-可分组折叠的Editor
- 🥗功能介绍
- 🍭用法
🥗功能介绍
在序列化的字段上标记特性:[FoldoutGroup(“xxx”)],inspector上就会被分组折叠显示。
(没有被指定的字段自动放到Default组中)
传送门🌈
🍭用法
1.Editor文件夹中新建一个xxxEditor,继承FoldoutGroupEditor
using System.Collections;
using System.Collections.Generic;
using UnityEditor;
using UnityEngine;
namespace ZYF
{[CustomEditor(typeof(FoldoutGroupDemo))]public class FoldoutGroupDemoEditor : FoldoutGroupEditor{}}
2.在组件xxx中对字段进行分组特性标记:[FoldoutGroup(“xxx”)]
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace ZYF
{public class FoldoutGroupDemo : MonoBehaviour{const string Group_String = "String";[SerializeField, FoldoutGroup(Group_String)]private string test_string;[FoldoutGroup(Group_String)]public string test_string2;}}
这篇关于Unity-可分组折叠的Editor的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!