Exemplo n.º 1
0
 public void Update()
 {
     if (this != _instance)
     {
         _instance = null;
     }
 }
Exemplo n.º 2
0
 void Awake()
 {
     if (_instance == null)
     {
         _instance = this;
         DontDestroyOnLoad(this);
     }
     else
     {
         if (this != _instance)
         {
             Destroy(this.gameObject);
         }
     }
 }