/// <summary>
		/// Triggers the instance to be searched again on OnLevelWasLoaded() 
		/// </summary>
		void OnLevelWasLoaded(int level)
		{
			_instance = null;
		}
		/// <summary>
		/// Triggers the instance to be searched again on OnDisable()
		/// </summary>
		public void OnDisable()
		{
			_instance = null;
		}