// destroy instance on destroy private void OnDestroy() { if (_instance == this) { _instance = null; } }
// initialize instance void Awake() { if (_instance != null) { Destroy(gameObject); } else { _instance = this; } }