using UnityEngine; public class Main : MonoBehaviour { public static LocationSimulator LocationSimulator { get; private set; } public static EventManager Event { get; set; } private void Awake() { DontDestroyOnLoad(this); LocationSimulator = GetComponentInChildren(); Event = GetComponentInChildren(); } private void OnDestroy() { Event = null; LocationSimulator = null; } }