Ejemplo n.º 1
0
 private void OnDestroy()
 {
     if (m_instance != null)
     {
         m_instance = null;
     }
 }
Ejemplo n.º 2
0
 // Start is called before the first frame update
 void Awake()
 {
     if (m_instance == null)
     {
         m_instance = this;
     }
 }
Ejemplo n.º 3
0
 void OnDestroy()
 {
     if (Instance == this)
     {
         Instance = null;
     }
 }
Ejemplo n.º 4
0
 void Awake()
 {
     if (Instance == null)
     {
         Instance = this;
     }
 }
Ejemplo n.º 5
0
 void OnDestroy()
 {
     if (Instance == null)
     {
         Instance = this;
     }
 }
 private void Awake()
 {
     instance = this;
 }