Odin-Inspector-系列教程—–HideLabelAttribute

Hide Label Attribute特性:用于任何属性,并在Inspector中中隐藏标签。使用此选项可隐藏Inspector中的属性标签。
也就是把字段的名称隐藏,只留下value

完成示例代码
using Sirenix.OdinInspector;
using UnityEngine;

public class HideLabelExample : MonoBehaviour
{
    public string showLabel = "菜鸟海澜";

    [HideLabel]
    public string hideLabel = "隐藏标题";

    [ShowInInspector]
    public string ShowPropertyLabel { get; set; }

    [HideLabel][ShowInInspector]
    public string HidePropertyLabel { get; set; }
}

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

《Odin-Inspector-系列教程—–HideLabelAttribute》有1条评论

  1. void start()
    {
    Debug.Log(showLabel); //菜鸟海澜
    Debug.Log(hideLabel);//隐藏标题
    //下面两个无论怎么设置数据,打印都为null,那感觉给属性复制没用了啊
    Debug.Log(showPropertyLabel);
    Debug.Log(HidePropertyLabel);
    }

    回复

发表评论