Odin-Inspector-系列教程—–DisableInPlayModeAttribute

Disable In Play Mode Attribute:在play模式下灰态指定属性,editor模式下显示

using Sirenix.OdinInspector;
using UnityEngine;

public class DisableInPlayModeAttributeExample : MonoBehaviour
{
    [Title("运行模式下禁用属性")]
    [DisableInPlayMode]
    public int A;

    [DisableInPlayMode]
    public Material B;
}

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

发表评论