2024-07-16 Unity插件 Odin Inspector7 —— Number Attributes

文章目录

  • 1 说明
  • 2 Number 特性
    • 2.1 MaxValue / MinValue
    • 2.2 MinMaxSlider
    • 2.3 ProgressBar
    • 2.4 PropertyRange
    • 2.5 Unit
    • 2.6 Wrap

1 说明

​ 本文介绍 Odin Inspector 插件中有关 Number 特性的使用方法。

2 Number 特性

2.1 MaxValue / MinValue

在 Inspector 窗口中对象能够被设置的最小 / 大值。超过该范围则会有错误提示。

  • double maxValue/minValue

    最大 / 小值。

  • string Expression

    用于解析最大 / 小值的字符串。可以是字段、属性、方法名或表达式。

image-20240716045038267
// MinMaxValueValueExamplesComponent.csusing Sirenix.OdinInspector;
using UnityEngine;public class MinMaxValueValueExamplesComponent : MonoBehaviour
{// Ints[Title("Int")][MinValue(0)]public int IntMinValue0;[MaxValue(0)]public int IntMaxValue0;// Floats[Title("Float")][MinValue(0)]public float FloatMinValue0;[MaxValue(0)]public float FloatMaxValue0;// Vectors[Title("Vectors")][MinValue(0)]public Vector3 Vector3MinValue0;[MaxValue(0)]public Vector3 Vector3MaxValue0;
}

2.2 MinMaxSlider

将 Vector2 向量表示为 [min, max] 区间,并在 Inspector 窗口中以滑动条方式显示。其中,x 为最小值,y 为最大值。

  • float minValue/maxValue

    最小 / 大值。

  • string minValueGetter/maxValueGetter

    获取最小 / 大值的方法名称。

  • string minMaxValueGetter

    获取最小、大值对的方法名称。

  • bool showFields = false

    是否显示对象名称。

image-20240716045759075
// MinMaxSliderExamplesComponent.csusing Sirenix.OdinInspector;
using UnityEngine;public class MinMaxSliderExamplesComponent : MonoBehaviour
{[MinMaxSlider(-10, 10)]public Vector2 MinMaxValueSlider = new Vector2(-7, -2);[MinMaxSlider(-10, 10, true)]public Vector2 WithFields = new Vector2(-3, 4);[InfoBox("You can also assign the min max values dynamically by referring to members.")][MinMaxSlider("DynamicRange", true)]public Vector2 DynamicMinMax = new Vector2(25, 50);[MinMaxSlider("Min", 10f, true)]public Vector2 DynamicMin = new Vector2(2, 7);[InfoBox("You can also use attribute expressions with the @ symbol.")][MinMaxSlider("@DynamicRange.x", "@DynamicRange.y * 10f", true)]public Vector2 Expressive = new Vector2(0, 450);public Vector2 DynamicRange = new Vector2(0, 50);public float Min { get { return this.DynamicRange.x; } }public float Max { get { return this.DynamicRange.y; } }
}

2.3 ProgressBar

为 value 绘制进度条。

  • double min/max

    最小 / 大值区间。

  • float r = 0.15f, float g = 0.47f, float b = 0.74f

    进度条颜色。

  • int Height

    进度条高度,默认为 12 像素。

  • bool Segmented

    进度条是否分段显示。

  • string ColorGetter/BackgroundColorGetter

    进度条 / 背景条颜色的获取方法。

  • bool DrawValueLabel

    是否绘制对象标签。

image-20240716050412188
// ProgressBarExamplesComponent.csusing Sirenix.OdinInspector;
using UnityEngine;public class ProgressBarExamplesComponent : MonoBehaviour
{[ProgressBar(0, 100)]public int ProgressBar = 50;[HideLabel][ProgressBar(-100, 100, r: 1, g: 1, b: 1, Height = 30)]public short BigColoredProgressBar = 50;[ProgressBar(0, 10, 0, 1, 0, Segmented = true)]public int SegmentedColoredBar = 5;[ProgressBar(0, 100, ColorGetter = "GetHealthBarColor")]public float DynamicHealthBarColor = 50;// The min and max properties also support attribute expressions with the $ symbol.[BoxGroup("Dynamic Range")][ProgressBar("Min", "Max")]public float DynamicProgressBar = 50;[BoxGroup("Dynamic Range")]public float Min;[BoxGroup("Dynamic Range")]public float Max = 100;[Range(0, 300)][BoxGroup("Stacked Health"), HideLabel]public float StackedHealth = 150;[HideLabel, ShowInInspector][ProgressBar(0, 100, ColorGetter = "GetStackedHealthColor", BackgroundColorGetter = "GetStackHealthBackgroundColor", DrawValueLabel = false)][BoxGroup("Stacked Health")]private float StackedHealthProgressBar {get { return this.StackedHealth % 100.01f; }}private Color GetHealthBarColor(float value) {return Color.Lerp(Color.red, Color.green, Mathf.Pow(value / 100f, 2));}private Color GetStackedHealthColor() {returnthis.StackedHealth > 200 ? Color.white :this.StackedHealth > 100 ? Color.green :Color.red;}private Color GetStackHealthBackgroundColor() {returnthis.StackedHealth > 200 ? Color.green :this.StackedHealth > 100 ? Color.red :new Color(0.16f, 0.16f, 0.16f, 1f);}
}

2.4 PropertyRange

创建滑块控件,将属性的值设置在指定范围之间。

  • double min/max

    最小 / 大值。

  • string minGetter/maxGetter

    获取最小、大值的方法名称。

image-20240716051249151
// PropertyRangeExampleComponent.csusing Sirenix.OdinInspector;
using UnityEngine;public class PropertyRangeExampleComponent : MonoBehaviour
{[Range(0, 10)]public int Field = 2;[InfoBox("Odin's PropertyRange attribute is similar to Unity's Range attribute, but also works on properties.")][ShowInInspector, PropertyRange(0, 10)]public int Property { get; set; }[InfoBox("You can also reference member for either or both min and max values.")][PropertyRange(0, "Max"), PropertyOrder(3)]public int Dynamic = 6;[PropertyOrder(4)]public int Max = 100;
}

2.5 Unit

为 value 显示单位。

  • Units unit

    显示的单位(枚举)。

  • Units @base

    基础单位。

  • Units display

    在 Inspector 窗口中显示的单位(经过转换)。

  • bool DisplayAsString

    如果为 true,则绘制为只读文本。

  • bool ForceDisplayUnit

    如果为 true,则禁用使用右键单击上下文菜单更改显示单位的选项。

image-20240716051834380
// UnitExampleComponent.csusing Sirenix.OdinInspector;
using UnityEngine;#if UNITY_EDITOR // Editor namespaces can only be used in the editor.
using Sirenix.Utilities.Editor;
#endifpublic class UnitExampleComponent : MonoBehaviour
{// Kilogram unit. Change the display by right-clicking.// Try entering '6 lb'.[Unit(Units.Kilogram)]public float Weight;// Meters per second unit, displayed as kilometers per hour in the inspector.// Try entering '15 mph'.[Unit(Units.MetersPerSecond, Units.KilometersPerHour)]public float Speed;// Meters, displayed as centimeters for finer control.[Unit(Units.Meter, Units.Centimeter)]public float Distance;// The speed value, shown as miles per hours. Excellent for debugging values in the inspector.[ShowInInspector, Unit(Units.MetersPerSecond, Units.MilesPerHour, DisplayAsString = true, ForceDisplayUnit = true)]public float SpeedMilesPerHour => Speed;
}

2.6 Wrap

在 Inspector 窗口中设置 value 的值超出指定范围时,将该值循环设置(求余)在指定范围内。

  • double min/max

    最小 / 大值。

image-20240716053113166
// WrapExamplesComponent.csusing Sirenix.OdinInspector;
using UnityEngine;public class WrapExamplesComponent : MonoBehaviour
{[Wrap(0f, 100f)]public int IntWrapFrom0To100;[Wrap(0f, 100f)]public float FloatWrapFrom0To100;[Wrap(0f, 100f)]public Vector3 Vector3WrapFrom0To100;[Wrap(0f, 360)]public float AngleWrap;[Wrap(0f, Mathf.PI * 2)]public float RadianWrap;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/47659.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

LLM 构建Data Multi-Agents 赋能数据分析平台的实践之④:数据分析之三(数据展示)

概述 在先前探讨的文章中,我们构建了一个全面的数据测试体系,该体系遵循“数据获取—数据治理—数据分析”的流程。如何高效地构建数据可视化看板,以直观展现分析结果,正逐渐成为利用新兴技术提升效能的关键领域。伴随业务拓展、数…

java json 实体互转 null现象

结论 相对于json字符串转为实体,再转回为json字符串,更接近高保真的是 “com.google.gson.Gson {}”, new GsonBuilder().create().toJson(bo1)); 和 “com.alibaba.fastjson.JSON {}”, JSON.toJSONString(bo1)); 代码 BusinessInsertBO bo Business…

《驾驭AI浪潮:伦理挑战与应对策略》

AI发展下的伦理挑战,应当如何应对? 人工智能飞速发展的同时,也逐渐暴露出侵犯数据隐私、制造“信息茧房”等种种伦理风险。随着AI技术在社会各个领域的广泛应用,关于AI伦理和隐私保护问题日趋凸显。尽管国外已出台系列法规来规范…

YOLOv7网络结构学习

YOLOV7详细解读(一)网络架构解读 YOLOV7学习记录之原理代码介绍 【Make YOLO Great Again】YOLOv1-v7全系列大解析(Backbone篇) yolov7 图解 深入浅出 Yolo 系列之 Yolov7 基础网络结构详解 我觉得Head、Neck和Head的划分不太…

从产品手册用户心理学分析到程序可用性与易用性的重要区别

注:机翻,未校对。 Designing for People Who Have Better Things To Do With Their Lives 为那些生活中有更重要事情要做的人设计 When you design user interfaces, it’s a good idea to keep two principles in mind: 在设计用户界面时,…

FTPS 和 SFTP

FTPS 和 SFTP 都是用于安全文件传输的协议,但它们之间存在一些关键的区别,包括它们如何实现安全性、工作方式以及与 FTP 的关系。下面是关于这两种协议的详细信息: FTPS (FTP over SSL/TLS) FTPS 是 FTP 协议的扩展,它通过在 FT…

三大ip代理服务商PK,IPFoxy黑马逆袭成首选?

最近亚马逊的Prime Day ,小编我呀忙得不可开交。因为小编负责的店铺数量多且需要稳定的长期连接,我用某一海外ip代理竟然不稳定,这还是号称老牌的ip代理服务商,因为它的漏洞,让我加班了好久处理工作上的问题。 吃一堑&#xff0c…

RPA鼠标按键使用技巧

RPA鼠标按键使用技巧 Mouse.MouseAuto.Action命令出错,调用的目标发生了异常,Exception in Mouse.Action元素不可用怎么解决 出现问题 1.想要实现的效果鼠标移动到录屏工具的小球上2.点击开始按钮开始录屏现象,鼠标没有移动痕迹&#xff0c…

【C++】C++ 职工信息管理系统(源码)【独一无二】

👉博__主👈:米码收割机 👉技__能👈:C/Python语言 👉公众号👈:测试开发自动化【获取源码商业合作】 👉荣__誉👈:阿里云博客专家博主、5…

C++系列-Vector模拟实现(补充)

&#x1f308;个人主页&#xff1a;羽晨同学 &#x1f4ab;个人格言:“成为自己未来的主人~” 迭代器失效 这篇文章是基于上一篇的Vector的模拟实现的补充知识点&#xff0c;首先我们需要重点关注的便是迭代器失效的问题。 void test_vector3(){std::vector<int> v…

【C++】类与对象的学习(中)

目录 一、默认成员函数&#xff1a; 二、构造函数&#xff1a; 1、定义&#xff1a; 2、理解&#xff1a; 三、析构函数&#xff1a; 1、定义&#xff1a; 2、理解&#xff1a; 四、拷贝构造&#xff1a; 1、定义&#xff1a; 2、理解&#xff1a; 五、运算符的重载&…

抖音视频素材是哪里找的?热门的抖音素材网站分享

抖音视频创作高手们&#xff0c;你们是否在寻找下一个爆款视频的完美素材&#xff1f;今天&#xff0c;我将为你们介绍几个优质的视频素材网站&#xff0c;确保你们能在素材的海洋中轻松找到那最耀眼的“珍珠”&#xff01; 蛙学网 首先&#xff0c;我们要推荐的是蛙学网。这个…

[C/C++入门][for]23、求阶乘

阶乘 一个正整数的阶乘是所有小于及等于该数的正整数的积&#xff0c;并且0的阶乘为1。 自然数n的阶乘写作n!。 即n!123...(n-1)n。阶乘亦可以递归方式定义&#xff1a;0!1&#xff0c;n!(n-1)!n。 例如&#xff0c;5的阶乘&#xff08;记作5!&#xff09;等于5 * 4 * 3 * …

Go语言并发编程-同步和锁

同步和锁 概述 同步是并发编程的基本要素之一&#xff0c;我们通过channel可以完成多个goroutine间数据和信号的同步。 除了channel外&#xff0c;我们还可以使用go的官方同步包sync&#xff0c;sync/atomic 完成一些基础的同步功能。主要包含同步数据、锁、原子操作等。 一…

13. C++继承 | 详解 | 虚拟继承及底层实现

目录 1.定义 1.1继承的概念 1.2 继承的定义 2. 对象赋值转换 3. 继承中的作用域 a. 隐藏/重定义 (Hiding/Redefinition) b. 重载 (Overloading) c. 重写/覆盖 (Overriding) d. 编译报错 (Compilation Error) 4. 派生类的默认成员函数 构造 拷贝构造 运算符重载 析…

Android 14 开机时间优化措施

Android开机优化系列文档-CSDN博客 Android 14 开机时间优化措施汇总-CSDN博客Android 14 开机时间优化措施-CSDN博客根据systrace报告优化系统时需要关注的指标和优化策略-CSDN博客Android系统上常见的性能优化工具-CSDN博客Android上如何使用perfetto分析systrace-CSDN博客A…

python __getattr__与__getattribute__的区别

python __getattr__与__getattribute__的区别 在Python中,__getattr__和__getattribute__都是用于访问对象属性的特殊方法,但它们在实现和使用上有一些重要的区别。 1. __getattr__ __getattr__ 是一个在访问对象的属性时被调用的特殊方法。它接收一个属性名作为参数,并在…

win11将bat文件固定到“开始“屏幕

一、为bat文件创建快捷方式 (假设bat文件的全名为运行脚本.bat) 右键bat文件&#xff0c;点击显示更多选项 右键菜单选择发送到(N)-桌面快捷方式 二、获取快捷方式的路径 返回桌面&#xff0c;选中创建好的快捷方式&#xff0c;按AltEnter&#xff0c;切换到安全选项卡 鼠…

JCR一区级 | Matlab实现PSO-Transformer-LSTM多变量回归预测

JCR一区级 | Matlab实现PSO-Transformer-LSTM多变量回归预测 目录 JCR一区级 | Matlab实现PSO-Transformer-LSTM多变量回归预测效果一览基本介绍程序设计参考资料 效果一览 基本介绍 1.Matlab实现PSO-Transformer-LSTM多变量回归预测&#xff0c;粒子群优化Transformer结合LST…

DCMM认证|DCMM认证需要怎么做?

DCMM&#xff08;Data Center Management Methodology&#xff09;是由中国信息通信研究院&#xff08;CAICT&#xff09;推出的一种数据中心管理方法论。想要进行DCMM认证&#xff0c;可以按照以下步骤进行&#xff1a; 1.了解DCMM认证标准&#xff1a;详细了解DCMM认证标准的…