Odin Inspector 系列教程 --- Color Palette Attribute

2024-02-09 22:08

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

Color Palette Attribute:于任何Color属性,并允许从不同的可定义调色板中选择颜色。使用此选项允许用户从一组预定义的颜色选项中进行选择。

【ColorPalette】使用这个特性就回在对应的字段旁出现可用的调色板
7643202-1bb54317c8fb25f0.gif
    [ColorPalette]public Color ColorOptions;
【PaletteName】也可以指定调色板名称,如果没有指定的调色板可以单击旁边的按钮创建
7643202-0c8f8945c71c1c86.gif
    [PropertySpace(50)][ColorPalette("Underwater")]public Color UnderwaterColor;[PropertySpace(50)][ColorPalette("我的调色板")]public Color MyColor;
【ShowAlpha】也可以显示选中颜色的apha状态
7643202-9cfce69563e5f397.png
    [PropertySpace(50)][ColorPalette("海澜调色板1",ShowAlpha = true)]public Color MyColor_Apha;
ColorPalette属性同时支持成员引用和属性表达式。
7643202-5e92b6009f4d28cd.gif
    // ColorPalette属性同时支持成员引用和属性表达式。[PropertySpace(50)][ColorPalette("$DynamicPaletteName")]public Color DynamicPaletteColor1;public string DynamicPaletteName = "Clovers";[PropertySpace(10)][PropertyRange(1,10)]public int DynamicPaletteColor2Index = 0;[ColorPalette("@\"海澜调色板\"+ DynamicPaletteColor2Index")]public Color DynamicPaletteColor2;
数组形式的Color也可以指定默认调色板,不指定用索引第一个调色板
7643202-4395df832a97d430.gif
    [PropertySpace(50,50)][ColorPalette("菜鸟海澜调色板")]public Color[] ColorArray;
辅助性功能,通过代码获取global调色板
7643202-471aa7023124d8e7.gif
    // ------------------------------------// Color palettes can be accessed and modified from code.// Note that the color palettes will NOT automatically be included in your builds.// But you can easily fetch all color palettes via the ColorPaletteManager // and include them in your game like so:// 调色板可以通过代码访问和修改。注意,调色板不会自动包含在您的构建中。// 但是你可以很容易地通过ColorPaletteManager获取所有的调色板,并将它们包括在你的游戏中,就像这样:// ------------------------------------[FoldoutGroup("Color Palettes", expanded: false)][ListDrawerSettings(IsReadOnly = true)][PropertyOrder(9)]public List<ColorPalette> ColorPalettes;#if UNITY_EDITOR[FoldoutGroup("Color Palettes"), Button("获取调色板",ButtonSizes.Large), GUIColor(0, 1, 0), PropertyOrder(8)]private void FetchColorPalettes(){this.ColorPalettes = Sirenix.OdinInspector.Editor.ColorPaletteManager.Instance.ColorPalettes.Select(x => new ColorPalette(){Name = x.Name,Colors = x.Colors.ToArray()}).ToList();}#endif[Serializable]public class ColorPalette{[HideInInspector]public string Name;[LabelText("$Name")][ListDrawerSettings(IsReadOnly = true, Expanded = false)]//IsReadOnly是否可以删除序列化数组  Expanded覆盖默认设置,是否展开,false为不展开状态public Color[] Colors;}
完整示例代码
using UnityEngine;
using Sirenix.OdinInspector;
using System;
using System.Linq;
using System.Collections.Generic;public class ColorPaletteAttributeExample : MonoBehaviour
{[ColorPalette]public Color ColorOptions;[PropertySpace(50)][ColorPalette("Underwater")]public Color UnderwaterColor;[PropertySpace(50)][ColorPalette("我的调色板")]public Color MyColor;[PropertySpace(50)][ColorPalette("海澜调色板1",ShowAlpha = true)]public Color MyColor_Apha;// ColorPalette属性同时支持成员引用和属性表达式。[PropertySpace(50)][ColorPalette("$DynamicPaletteName")]public Color DynamicPaletteColor1;public string DynamicPaletteName = "Clovers";[PropertySpace(10)][PropertyRange(1,10)]public int DynamicPaletteColor2Index = 0;[ColorPalette("@\"海澜调色板\"+ DynamicPaletteColor2Index")]public Color DynamicPaletteColor2;[PropertySpace(50)][ColorPalette("Fall"), HideLabel]public Color WideColorPalette;[PropertySpace(50,50)][ColorPalette("菜鸟海澜调色板")]public Color[] ColorArray;// ------------------------------------// Color palettes can be accessed and modified from code.// Note that the color palettes will NOT automatically be included in your builds.// But you can easily fetch all color palettes via the ColorPaletteManager // and include them in your game like so:// 调色板可以通过代码访问和修改。注意,调色板不会自动包含在您的构建中。// 但是你可以很容易地通过ColorPaletteManager获取所有的调色板,并将它们包括在你的游戏中,就像这样:// ------------------------------------[FoldoutGroup("Color Palettes", expanded: false)][ListDrawerSettings(IsReadOnly = true)][PropertyOrder(9)]public List<ColorPalette> ColorPalettes;#if UNITY_EDITOR[FoldoutGroup("Color Palettes"), Button("获取调色板",ButtonSizes.Large), GUIColor(0, 1, 0), PropertyOrder(8)]private void FetchColorPalettes(){this.ColorPalettes = Sirenix.OdinInspector.Editor.ColorPaletteManager.Instance.ColorPalettes.Select(x => new ColorPalette(){Name = x.Name,Colors = x.Colors.ToArray()}).ToList();}#endif[Serializable]public class ColorPalette{[HideInInspector]public string Name;[LabelText("$Name")][ListDrawerSettings(IsReadOnly = true, Expanded = false)]//IsReadOnly是否可以删除序列化数组  Expanded覆盖默认设置,是否展开,false为不展开状态public Color[] Colors;}
}

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

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



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

相关文章

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

Makefile简明使用教程

文章目录 规则makefile文件的基本语法:加在命令前的特殊符号:.PHONY伪目标: Makefilev1 直观写法v2 加上中间过程v3 伪目标v4 变量 make 选项-f-n-C Make 是一种流行的构建工具,常用于将源代码转换成可执行文件或者其他形式的输出文件(如库文件、文档等)。Make 可以自动化地执行编译、链接等一系列操作。 规则 makefile文件

科研绘图系列:R语言扩展物种堆积图(Extended Stacked Barplot)

介绍 R语言的扩展物种堆积图是一种数据可视化工具,它不仅展示了物种的堆积结果,还整合了不同样本分组之间的差异性分析结果。这种图形表示方法能够直观地比较不同物种在各个分组中的显著性差异,为研究者提供了一种有效的数据解读方式。 加载R包 knitr::opts_chunk$set(warning = F, message = F)library(tidyverse)library(phyl

【生成模型系列(初级)】嵌入(Embedding)方程——自然语言处理的数学灵魂【通俗理解】

【通俗理解】嵌入(Embedding)方程——自然语言处理的数学灵魂 关键词提炼 #嵌入方程 #自然语言处理 #词向量 #机器学习 #神经网络 #向量空间模型 #Siri #Google翻译 #AlexNet 第一节:嵌入方程的类比与核心概念【尽可能通俗】 嵌入方程可以被看作是自然语言处理中的“翻译机”,它将文本中的单词或短语转换成计算机能够理解的数学形式,即向量。 正如翻译机将一种语言

SWAP作物生长模型安装教程、数据制备、敏感性分析、气候变化影响、R模型敏感性分析与贝叶斯优化、Fortran源代码分析、气候数据降尺度与变化影响分析

查看原文>>>全流程SWAP农业模型数据制备、敏感性分析及气候变化影响实践技术应用 SWAP模型是由荷兰瓦赫宁根大学开发的先进农作物模型,它综合考虑了土壤-水分-大气以及植被间的相互作用;是一种描述作物生长过程的一种机理性作物生长模型。它不但运用Richard方程,使其能够精确的模拟土壤中水分的运动,而且耦合了WOFOST作物模型使作物的生长描述更为科学。 本文让更多的科研人员和农业工作者

flume系列之:查看flume系统日志、查看统计flume日志类型、查看flume日志

遍历指定目录下多个文件查找指定内容 服务器系统日志会记录flume相关日志 cat /var/log/messages |grep -i oom 查找系统日志中关于flume的指定日志 import osdef search_string_in_files(directory, search_string):count = 0

沁恒CH32在MounRiver Studio上环境配置以及使用详细教程

目录 1.  RISC-V简介 2.  CPU架构现状 3.  MounRiver Studio软件下载 4.  MounRiver Studio软件安装 5.  MounRiver Studio软件介绍 6.  创建工程 7.  编译代码 1.  RISC-V简介         RISC就是精简指令集计算机(Reduced Instruction SetCom

前端技术(七)——less 教程

一、less简介 1. less是什么? less是一种动态样式语言,属于css预处理器的范畴,它扩展了CSS语言,增加了变量、Mixin、函数等特性,使CSS 更易维护和扩展LESS 既可以在 客户端 上运行 ,也可以借助Node.js在服务端运行。 less的中文官网:https://lesscss.cn/ 2. less编译工具 koala 官网 http://koala-app.

GPT系列之:GPT-1,GPT-2,GPT-3详细解读

一、GPT1 论文:Improving Language Understanding by Generative Pre-Training 链接:https://cdn.openai.com/research-covers/languageunsupervised/language_understanding_paper.pdf 启发点:生成loss和微调loss同时作用,让下游任务来适应预训

【Shiro】Shiro 的学习教程(三)之 SpringBoot 集成 Shiro

目录 1、环境准备2、引入 Shiro3、实现认证、退出3.1、使用死数据实现3.2、引入数据库,添加注册功能后端代码前端代码 3.3、MD5、Salt 的认证流程 4.、实现授权4.1、基于角色授权4.2、基于资源授权 5、引入缓存5.1、EhCache 实现缓存5.2、集成 Redis 实现 Shiro 缓存 1、环境准备 新建一个 SpringBoot 工程,引入依赖: