Ejemplo n.º 1
0
 void OnDestroy()
 {
     if (_globalUpdateManager == this)
     {
         _globalUpdateManager = null;
     }
 }
Ejemplo n.º 2
0
 private void Awake()
 {
     if (_globalUpdateManager == null)
     {
         _globalUpdateManager = this;
         Init();
     }
     else if (_globalUpdateManager != this)
     {
         Destroy(gameObject);
         return;
     }
 }