美文网首页
Odin Inspector 系列教程 --- Read Onl

Odin Inspector 系列教程 --- Read Onl

作者: 忆中异 | 来源:发表于2021-11-29 10:08 被阅读0次

ReadOnly特性:用于任何属性,并禁用该属性在检查器中更改。如果要在检查器中查看属性的值,但不希望更改它,请使用此选项。
就是以灰态的形式展示

image
完整示例代码
using Sirenix.OdinInspector;
using UnityEngine;

public class ReadOnlyExample : MonoBehaviour
{
    [ReadOnly]
    public string MyString = "这将显示为文本";

    [ReadOnly]
    public int MyInt = 9001;

    [ReadOnly]
    public int[] MyIntList = new int[] { 1, 2, 3, 4, 5, 6, 7, };
}


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

链接:https://www.jianshu.com/p/16c0504bcd2d

相关文章

网友评论

      本文标题:Odin Inspector 系列教程 --- Read Onl

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