本文主要是介绍Odin Inspector 系列教程 --- Disable In Play Mode Attribute,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
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 系列教程
这篇关于Odin Inspector 系列教程 --- Disable In Play Mode Attribute的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!