이 페이지가 있는 버전:
이 페이지가 없는 버전:
class in UnityEditor
Allow an editor class method to be initialized when Unity loads without action from the user.
using UnityEngine; using UnityEditor;class MyClass { [InitializeOnLoadMethod] static void OnProjectLoadedInEditor() { Debug.Log("Project loaded in Unity Editor"); } }