Version: 2022.2
언어: 한국어

InitializeOnEnterPlayModeAttribute

class in UnityEditor

매뉴얼로 전환

설명

Allow an editor class method to be initialized when Unity enters Play Mode.

Use to reset static fields in Editor classes on Enter Play Mode without Domain Reload.

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; } }

Or perform any other logic on Enter Play Mode.

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(); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961