美文网首页
Odin Inspector 系列教程 --- Range At

Odin Inspector 系列教程 --- Range At

作者: su9257_海澜 | 来源:发表于2019-10-12 23:17 被阅读0次

Range Attribute:Unity自带属性,用于给一个数值创建一个滑动控件

using Sirenix.OdinInspector;
using UnityEngine;

public class RangeAttributeExample : MonoBehaviour
{
    [Range(0, 10)]
    public int Field = 2;

    [InfoBox("Odin的PropertyRange属性类似于Unity的Range属性,但也适用于属性。")]
    [ShowInInspector, PropertyRange(0, 10)]
    public int Property { get; set; }

    [InfoBox("您还可以为最小值和最大值中的一个或两个引用成员.")]
    [PropertyRange(0, "Max"), PropertyOrder(3)]
    public int Dynamic = 6;

    [PropertyOrder(4)]
    public int Max = 100;
}

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

相关文章

网友评论

      本文标题:Odin Inspector 系列教程 --- Range At

      本文链接:https://www.haomeiwen.com/subject/qsfqmctx.html