Esempio n. 1
0
	// Use this for initialization
	void Start () {


        instance = this;

      
	}
Esempio n. 2
0
    //-----------------------------------------------------------------------------------------------------------------------------------------
    IEnumerator LoadReferences()
    {

        Debug.Log("Looking for references");

        while(!initialized)
        {
            if (!_towerCursor)
                _towerCursor = TowerCursor.GetInstance();

            if (!_towerRays)
                _towerRays = TowerRays.GetInstance();

            if (_towerCursor && _towerRays)
                initialized = true;


            yield return null;
        }

        Debug.Log("references loaded for tower");
    }