Odin-Inspector-系列教程—–DisableInPrefabAssetsAttribute

Disable In Prefab Assets Attribute:用于当属性所在的组件是预制体,且预制体在Asset中时禁用属性

using Sirenix.OdinInspector;
using UnityEngine;

public class DisableInPrefabAssetsAttributeExample : MonoBehaviour
{
    [DisableInPrefabAssets]//在asset中且为预制体时,这个属性被警用
    public GameObject DisabledInPrefabAssets;
}

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

发表评论