允许在 Unity 进入播放模式时初始化编辑器类方法。
用于在进入播放模式时重置编辑器类中的静态字段,无需重新加载域。
using UnityEngine; using UnityEditor;
class MyAnotherClass { static int s_MySimpleValue = 0;
[InitializeOnEnterPlayMode] static void OnEnterPlaymodeInEditor(EnterPlayModeOptions options) { Debug.Log("Entering PlayMode");
if (options.HasFlag(EnterPlayModeOptions.DisableDomainReload)) s_MySimpleValue = 0; } }
或在进入播放模式时执行任何其他逻辑。
using UnityEngine; using UnityEditor;
class MyClass { static int s_MyValue = 0;
static void MyClassPlaymodeSetup() { s_MyValue = 1000; //... }
[InitializeOnEnterPlayMode] static void OnEnterPlaymodeInEditor(EnterPlayModeOptions options) { Debug.Log("Entering PlayMode"); MyClassPlaymodeSetup(); } }