Ejemplo n.º 1
0
 void Awake()
 {
     if (_instance == null)
     {
         _instance = this;
     }
 }
Ejemplo n.º 2
0
        void Awake()
        {
            if (_instance == null)
            {
                _instance = this;
            }

                        #if UNITY_5_4_OR_NEWER
            SceneManager.sceneLoaded -= OnSceneWasLoaded;
            SceneManager.sceneLoaded += OnSceneWasLoaded;
                        #endif
        }
Ejemplo n.º 3
0
		void OnApplicationQuit()
		{
			_instance = null;
			Destroy( gameObject );
			_applicationIsQuitting = true;
		}
Ejemplo n.º 4
0
		void Awake()
		{
			if( _instance == null )
				_instance = this;
		}
Ejemplo n.º 5
0
 void OnApplicationQuit()
 {
     _instance = null;
     Destroy(gameObject);
     _applicationIsQuitting = true;
 }
Ejemplo n.º 6
0
 private void OnApplicationQuit()
 {
     _instance = null;
     Destroy(gameObject);
 }