Exemplo n.º 1
0
 public void Awake()
 {
     if (Instance != null)
     {
         Destroy(Instance);
     }
     Instance = this;
 }
Exemplo n.º 2
0
 public void OnDestroy()
 {
     Debug.Log($"{ModTag} {target.GetItemName()} OnDestroy.");
     if (Instance == this)
     {
         Destroy(this);
         Instance = null;
     }
 }