Odin Inspector 系列教程 --- Value Dropdown Attribute

2024-02-09 22:08

本文主要是介绍Odin Inspector 系列教程 --- Value Dropdown Attribute,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Value Dropdown Attribute特性用于任何属性,并使用可配置选项创建下拉列表。使用此选项可为用户提供一组特定的选项供您选择。
也就是创建一些特殊的下拉条

这个里面的属性就有点多了,达到了16个!!!
下面笔者逐个讲解

MemberName,也是唯一一个有参构造函数需要的属性,有两种形式的Drop下拉条,一种是直接数值的,另一种是Key-Value形式的
7643202-5133392a301e7482.gif
    /*【MemberName】*/[PropertySpace(40, 0)][ValueDropdown("TextureSizes")]public int SomeSize1;private static int[] TextureSizes = new int[] { 32, 64, 128, 256, 512, 1024, 2048, 4096 };[ValueDropdown("FriendlyTextureSizes")]public int SomeSize2;private static IEnumerable FriendlyTextureSizes = new ValueDropdownList<int>(){{ "Small", 256 },{ "Medium", 512 },{ "Large", 1024 },};
【SortDropdownItems】默认为false 开启后为下拉列表为根据Key升序排序
7643202-0d2e87e0c595e834.gif
    /*【SortDropdownItems】默认为false 开启后为下拉列表为根据Key升序排序*/[PropertySpace(40, 0)][ValueDropdown("SortList1")]public int SomeSize3;private IEnumerable SortList1 = new ValueDropdownList<int>(){{ "Small", 256 },{ "Medium", 512 },{ "Large", 1024 },{ "A", 128 },};[PropertySpace(0, 40)][ValueDropdown("SortList2", SortDropdownItems = true)]public int SomeSize4;private List<ValueDropdownItem<int>> SortList2 = new ValueDropdownList<int>(){{ "Small", 256 },{ "Medium", 512 },{ "Large", 1024 },{ "A", 128 },};
【DropdownTitle】给下来条提供一个标题
7643202-9a139d5edd540247.gif
    [PropertySpace(0, 40)][ValueDropdown("TextureSizes", DropdownTitle = "下拉条标题")]public int SomeSize5;
【DropdownHeight】下拉条高度
7643202-8d497fb864acf9ad.gif
    /*【DropdownHeight】下拉条高度*/[PropertySpace(0, 40)][ValueDropdown("TextureSizes", DropdownHeight = 80)]public int SomeSize6;
【DropdownWidth】下拉条的宽度
7643202-94faa27ba6d8709c.gif
    /*【DropdownWidth】下拉条的宽度*/[PropertySpace(0, 40)][ValueDropdown("TextureSizes", DropdownWidth = 100)]public int SomeSize7;
【FlattenTreeView】是否使用平铺的树形视图
7643202-b8448162f2aff711.gif
    /*【FlattenTreeView】是否使用平铺的树形视图*/[PropertySpace(0, 40)][ValueDropdown("TreeViewOfInts", FlattenTreeView = true)]//默认为false,如果设置为true则禁用树形结构使用平铺模式public int SomeSize8;
【DoubleClickToConfirm】需要双击才能确地选中的内容
7643202-0522a8c8db841a5e.gif
    /*【DoubleClickToConfirm】需要双击才能确地选中的内容*/[PropertySpace(0, 40)][ValueDropdown("TreeViewOfInts", DoubleClickToConfirm = true)]//需要双击才能选中public int SomeSize9;
【HideChildProperties】是否隐藏此类型所含有的属性信息
7643202-f9351ae2fc862355.png
    /*【HideChildProperties】是否隐藏此类型所含有的属性信息*/[ValueDropdown("RangVector3", HideChildProperties = true)]//public Vector3 vector3HideChildProperties;[PropertySpace(0, 40)][ValueDropdown("RangVector3", HideChildProperties = false)]//public Vector3 vector3ShowChildProperties;public IEnumerable<Vector3>  RangVector3(){return Enumerable.Range(0, 10).Select(i => new Vector3(i, i, i));}
【AppendNextDrawer】下拉条变成一个小的选择器,代替原有的宽型下拉条
7643202-132b3d1fe697a04a.gif
    /*【AppendNextDrawer】下拉条变成一个小的选择器,代替原有的宽型下拉条*/[PropertySpace(0, 40)][ValueDropdown("TreeViewOfInts", AppendNextDrawer = true)]//public int SomeSize11;
【DisableGUIInAppendedDrawer】配合AppendNextDrawer使用,显示的数值为灰度状态,达到不可更改数值的目的
7643202-55796b6570049c75.gif
    /*【DisableGUIInAppendedDrawer】配合AppendNextDrawer使用,显示的数值为灰度状态,达到不可更改数值的目的*/[PropertySpace(0, 40)][ValueDropdown("TreeViewOfInts", AppendNextDrawer = true, DisableGUIInAppendedDrawer = true)]//public int SomeSize12;
ExpandAllMenuItems】下拉条里面的条目是否全部展开
7643202-01569c004ab367f8.gif
    /*【ExpandAllMenuItems】下拉条里面的条目是否全部展开*/[ValueDropdown("TreeViewOfInts" , ExpandAllMenuItems = false)]//public int SomeSize13;[PropertySpace(0, 40)][ValueDropdown("TreeViewOfInts", ExpandAllMenuItems =true )]//public int SomeSize14;
【IsUniqueList】在添加的列表Item前面添加勾选框,可以一次性勾选多个Item并添加
7643202-c01d00466668a841.gif
    /*【IsUniqueList】在添加的列表Item前面添加勾选框,可以一次性勾选多个Item并添加*/[ValueDropdown("GetAllSceneObjects", IsUniqueList = false)]public List<GameObject> UniqueGameobjectList0;[PropertySpace(0, 40)][ValueDropdown("GetAllSceneObjects", IsUniqueList = true)]public List<GameObject> UniqueGameobjectList1;
【ExcludeExistingValuesInList】添加列中不会显示已经选中的Item
7643202-a494380d06e61060.gif
    /*【ExcludeExistingValuesInList】添加列中不会显示已经选中的Item*/[ValueDropdown("GetAllSceneObjects")]public List<GameObject> UniqueGameobjectList2;[PropertySpace(0, 40)][ValueDropdown("GetAllSceneObjects", ExcludeExistingValuesInList = true)]public List<GameObject> UniqueGameobjectList3;
【DisableListAddButtonBehaviour】禁用下拉列表,以弹窗的形式弹出
7643202-ce51f8559caf0457.gif
    /*【DisableListAddButtonBehaviour】禁用下拉列表,以弹窗的形式弹出*/[PropertySpace(0, 40)][ValueDropdown("GetAllSceneObjects", DisableListAddButtonBehaviour = true, IsUniqueList = true)]public List<GameObject> UniqueGameobjectList4;
【DrawDropdownForListElements】已经添加的Item不会再出现Item下拉表
7643202-cc3b46a31df970df.gif
    /*【DrawDropdownForListElements】已经添加的Item不会再出现Item下拉表*/[PropertySpace(0, 40)][ValueDropdown("GetAllSceneObjects", DrawDropdownForListElements = false)]public List<GameObject> UniqueGameobjectList5;
``##### 【NumberOfItemsBeforeEnablingSearch】查过指定数量的Item则出现搜索框。默认是10。![](https://upload-images.jianshu.io/upload_images/7643202-87b2e38d89c171cc.gif?imageMogr2/auto-orient/strip)```cs/*【NumberOfItemsBeforeEnablingSearch】查过指定数量的Item则出现搜索框。默认是10。*/[ValueDropdown("GetAllSceneObjects", NumberOfItemsBeforeEnablingSearch =200)]public List<GameObject> UniqueGameobjectList6;[PropertySpace(0, 40)][ValueDropdown("GetAllSceneObjects", NumberOfItemsBeforeEnablingSearch = 20)]public List<GameObject> UniqueGameobjectList7;
示例完整代码(含有一些其他辅助性功能代码)
using Sirenix.OdinInspector;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using UnityEngine;public class ValueDropdownAttributeExample : MonoBehaviour
{/*【MemberName】*/[PropertySpace(40, 0)][ValueDropdown("TextureSizes")]public int SomeSize1;private static int[] TextureSizes = new int[] { 32, 64, 128, 256, 512, 1024, 2048, 4096 };[ValueDropdown("FriendlyTextureSizes")]public int SomeSize2;private static IEnumerable FriendlyTextureSizes = new ValueDropdownList<int>(){{ "Small", 256 },{ "Medium", 512 },{ "Large", 1024 },};/*【SortDropdownItems】默认为false 开启后为下拉列表为根据Key升序排序*/[PropertySpace(40, 0)][ValueDropdown("SortList1")]public int SomeSize3;private IEnumerable SortList1 = new ValueDropdownList<int>(){{ "Small", 256 },{ "Medium", 512 },{ "Large", 1024 },{ "A", 128 },};[PropertySpace(0, 40)][ValueDropdown("SortList2", SortDropdownItems = true)]public int SomeSize4;private List<ValueDropdownItem<int>> SortList2 = new ValueDropdownList<int>(){{ "Small", 256 },{ "Medium", 512 },{ "Large", 1024 },{ "A", 128 },};/*【DropdownTitle】给下来条提供一个标题*/[PropertySpace(0, 40)][ValueDropdown("TextureSizes", DropdownTitle = "下拉条标题")]public int SomeSize5;/*【DropdownHeight】下拉条高度*/[PropertySpace(0, 40)][ValueDropdown("TextureSizes", DropdownHeight = 80)]public int SomeSize6;/*【DropdownWidth】下拉条的宽度*/[PropertySpace(0, 40)][ValueDropdown("TextureSizes", DropdownWidth = 100)]public int SomeSize7;/*【FlattenTreeView】是否使用平铺的树形视图*/[PropertySpace(0, 40)][ValueDropdown("TreeViewOfInts", FlattenTreeView = true)]//默认为false,如果设置为true则禁用树形结构使用平铺模式public int SomeSize8;/*【DoubleClickToConfirm】需要双击才能确地选中的内容*/[PropertySpace(0, 40)][ValueDropdown("TreeViewOfInts", DoubleClickToConfirm = true)]//需要双击才能选中public int SomeSize9;/*【HideChildProperties】是否隐藏此类型所含有的属性信息*/[ValueDropdown("RangVector3", HideChildProperties = true)]//public Vector3 vector3HideChildProperties;[PropertySpace(0, 40)][ValueDropdown("RangVector3", HideChildProperties = false)]//public Vector3 vector3ShowChildProperties;public IEnumerable<Vector3>  RangVector3(){return Enumerable.Range(0, 10).Select(i => new Vector3(i, i, i));}/*【AppendNextDrawer】下拉条变成一个小的选择器,代替原有的宽型下拉条*/[PropertySpace(0, 40)][ValueDropdown("TreeViewOfInts", AppendNextDrawer = true)]//public int SomeSize11;/*【DisableGUIInAppendedDrawer】配合AppendNextDrawer使用,显示的数值为灰度状态,达到不可更改数值的目的*/[PropertySpace(0, 40)][ValueDropdown("TreeViewOfInts", AppendNextDrawer = true, DisableGUIInAppendedDrawer = true)]//public int SomeSize12;/*【ExpandAllMenuItems】下拉条里面的条目是否全部展开*/[ValueDropdown("TreeViewOfInts" , ExpandAllMenuItems = false)]//public int SomeSize13;[PropertySpace(0, 40)][ValueDropdown("TreeViewOfInts", ExpandAllMenuItems =true )]//public int SomeSize14;/*【IsUniqueList】在添加的列表Item前面添加勾选框,可以一次性勾选多个Item并添加*/[ValueDropdown("GetAllSceneObjects", IsUniqueList = false)]public List<GameObject> UniqueGameobjectList0;[PropertySpace(0, 40)][ValueDropdown("GetAllSceneObjects", IsUniqueList = true)]public List<GameObject> UniqueGameobjectList1;/*【ExcludeExistingValuesInList】添加列中不会显示已经选中的Item*/[ValueDropdown("GetAllSceneObjects")]public List<GameObject> UniqueGameobjectList2;[PropertySpace(0, 40)][ValueDropdown("GetAllSceneObjects", ExcludeExistingValuesInList = true)]public List<GameObject> UniqueGameobjectList3;/*【DisableListAddButtonBehaviour】禁用下拉列表,以弹窗的形式弹出*/[PropertySpace(0, 40)][ValueDropdown("GetAllSceneObjects", DisableListAddButtonBehaviour = true, IsUniqueList = true)]public List<GameObject> UniqueGameobjectList4;/*【DrawDropdownForListElements】已经添加的Item不会再出现Item下拉表*/[PropertySpace(0, 40)][ValueDropdown("GetAllSceneObjects", DrawDropdownForListElements = false)]public List<GameObject> UniqueGameobjectList5;/*【NumberOfItemsBeforeEnablingSearch】查过指定数量的Item则出现搜索框。默认是10。*/[ValueDropdown("GetAllSceneObjects", NumberOfItemsBeforeEnablingSearch =200)]public List<GameObject> UniqueGameobjectList6;[PropertySpace(0, 40)][ValueDropdown("GetAllSceneObjects", NumberOfItemsBeforeEnablingSearch = 20)]public List<GameObject> UniqueGameobjectList7;[ValueDropdown("GetListOfMonoBehaviours", AppendNextDrawer = true, HideChildProperties = false)]public MonoBehaviour SomeMonoBehaviour;private IEnumerable<MonoBehaviour> GetListOfMonoBehaviours(){return GameObject.FindObjectsOfType<MonoBehaviour>();}[ValueDropdown("KeyCodes")]public KeyCode FilteredEnum;private static IEnumerable<KeyCode> KeyCodes = Enumerable.Range((int)KeyCode.Alpha0, 10).Cast<KeyCode>();[ValueDropdown("TreeViewOfInts", ExpandAllMenuItems = true)]public List<int> IntTreeview = new List<int>() { 1, 2, 7 };/// <summary>/// 以“/”符号作为类别分隔符/// </summary>private IEnumerable TreeViewOfInts = new ValueDropdownList<int>()
{{ "Node 1/Node 1.1", 1 },{ "Node 1/Node 1.2", 2 },{ "Node 2/Node 2.1", 3 },{ "Node 3/Node 3.1", 4 },{ "Node 3/Node 3.2", 5 },{ "Node 1/Node 3.1/Node 3.1.1", 6 },{ "Node 1/Node 3.1/Node 3.1.2", 7 },{ "Node 1", -1 },{ "Node 2", -2 },{ "Node 3", -3 },{ "Node 4", -4 },
};/// <summary>/// IsUniqueList为true 每个Item上面有一个勾选框/// </summary>[ValueDropdown("GetAllSceneObjects", IsUniqueList = true, HideChildProperties = false)]public List<GameObject> UniqueGameobjectList;private static IEnumerable GetAllSceneObjects(){Func<Transform, string> getPath = null;getPath = x => (x ? getPath(x.parent) + "/" + x.gameObject.name : "");//三元运算符 其中X为Transformreturn GameObject.FindObjectsOfType<GameObject>().Select(x => new ValueDropdownItem(getPath(x.transform), x));}/// <summary>/// ExcludeExistingValuesInList 为 ture则选中的item不在出现在等待选择的列下拉表中/// DrawDropdownForListElements 为 true  每个item都有一个下拉列表/// </summary>[ValueDropdown("GetAllSceneObjects", IsUniqueList = false, DropdownTitle = "Select Scene Object", DrawDropdownForListElements = false, ExcludeExistingValuesInList = true)]public List<GameObject> UniqueGameobjectListMode2;private static IEnumerable GetAllScriptableObjects(){return UnityEditor.AssetDatabase.FindAssets("t:ScriptableObject").Select(x => UnityEditor.AssetDatabase.GUIDToAssetPath(x)).Select(x => new ValueDropdownItem(x, UnityEditor.AssetDatabase.LoadAssetAtPath<ScriptableObject>(x)));}private static IEnumerable GetAllSirenixAssets(){var root = "Assets/Plugins/Sirenix/";return UnityEditor.AssetDatabase.GetAllAssetPaths().Where(x => x.StartsWith(root)).Select(x => x.Substring(root.Length)).Select(x => new ValueDropdownItem(x, UnityEditor.AssetDatabase.LoadAssetAtPath<UnityEngine.Object>(root + x)));}
}

更多教程内容详见:革命性Unity 编辑器扩展工具 --- Odin Inspector 系列教程

这篇关于Odin Inspector 系列教程 --- Value Dropdown Attribute的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/695395

相关文章

Window Server创建2台服务器的故障转移群集的图文教程

《WindowServer创建2台服务器的故障转移群集的图文教程》本文主要介绍了在WindowsServer系统上创建一个包含两台成员服务器的故障转移群集,文中通过图文示例介绍的非常详细,对大家的... 目录一、 准备条件二、在ServerB安装故障转移群集三、在ServerC安装故障转移群集,操作与Ser

windos server2022的配置故障转移服务的图文教程

《windosserver2022的配置故障转移服务的图文教程》本文主要介绍了windosserver2022的配置故障转移服务的图文教程,以确保服务和应用程序的连续性和可用性,文中通过图文介绍的非... 目录准备环境:步骤故障转移群集是 Windows Server 2022 中提供的一种功能,用于在多个

龙蜥操作系统Anolis OS-23.x安装配置图解教程(保姆级)

《龙蜥操作系统AnolisOS-23.x安装配置图解教程(保姆级)》:本文主要介绍了安装和配置AnolisOS23.2系统,包括分区、软件选择、设置root密码、网络配置、主机名设置和禁用SELinux的步骤,详细内容请阅读本文,希望能对你有所帮助... ‌AnolisOS‌是由阿里云推出的开源操作系统,旨

PyTorch使用教程之Tensor包详解

《PyTorch使用教程之Tensor包详解》这篇文章介绍了PyTorch中的张量(Tensor)数据结构,包括张量的数据类型、初始化、常用操作、属性等,张量是PyTorch框架中的核心数据结构,支持... 目录1、张量Tensor2、数据类型3、初始化(构造张量)4、常用操作5、常用属性5.1 存储(st

Java操作PDF文件实现签订电子合同详细教程

《Java操作PDF文件实现签订电子合同详细教程》:本文主要介绍如何在PDF中加入电子签章与电子签名的过程,包括编写Word文件、生成PDF、为PDF格式做表单、为表单赋值、生成文档以及上传到OB... 目录前言:先看效果:1.编写word文件1.2然后生成PDF格式进行保存1.3我这里是将文件保存到本地后

windows系统下shutdown重启关机命令超详细教程

《windows系统下shutdown重启关机命令超详细教程》shutdown命令是一个强大的工具,允许你通过命令行快速完成关机、重启或注销操作,本文将为你详细解析shutdown命令的使用方法,并提... 目录一、shutdown 命令简介二、shutdown 命令的基本用法三、远程关机与重启四、实际应用

python库fire使用教程

《python库fire使用教程》本文主要介绍了python库fire使用教程,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 目录1.简介2. fire安装3. fire使用示例1.简介目前python命令行解析库用过的有:ar

LinuxMint怎么安装? Linux Mint22下载安装图文教程

《LinuxMint怎么安装?LinuxMint22下载安装图文教程》LinuxMint22发布以后,有很多新功能,很多朋友想要下载并安装,该怎么操作呢?下面我们就来看看详细安装指南... linux Mint 是一款基于 Ubuntu 的流行发行版,凭借其现代、精致、易于使用的特性,深受小伙伴们所喜爱。对

使用Nginx来共享文件的详细教程

《使用Nginx来共享文件的详细教程》有时我们想共享电脑上的某些文件,一个比较方便的做法是,开一个HTTP服务,指向文件所在的目录,这次我们用nginx来实现这个需求,本文将通过代码示例一步步教你使用... 在本教程中,我们将向您展示如何使用开源 Web 服务器 Nginx 设置文件共享服务器步骤 0 —

Golang使用minio替代文件系统的实战教程

《Golang使用minio替代文件系统的实战教程》本文讨论项目开发中直接文件系统的限制或不足,接着介绍Minio对象存储的优势,同时给出Golang的实际示例代码,包括初始化客户端、读取minio对... 目录文件系统 vs Minio文件系统不足:对象存储:miniogolang连接Minio配置Min