Odin-Inspector-系列教程—–RangeAttribute

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 系列教程

发表评论