Ejemplo n.º 1
0
        /**
         * support recompile in editor
         */
#if UNITY_EDITOR
        void Update()
        {
            if (_instance == null)
            {
                _instance = this;
            }
        }
Ejemplo n.º 2
0
 /**
  * Awake..
  */
 void Awake()
 {
     _instance = this;
     if (confirmOverlay != null && confirmOverlay.gameObject.activeSelf)
     {
         confirmOverlay.gameObject.SetActive(false);
     }
     if (notEnoughCoinsOverlay != null && notEnoughCoinsOverlay.gameObject.activeSelf)
     {
         notEnoughCoinsOverlay.gameObject.SetActive(false);
     }
     if (Time.frameCount < 3)
     {
         instance.gameObject.SetActive(false);
     }
 }