예제 #1
0
    public void PlayerEnterIsland()
    {
        if (GameManager.usesRifts)
        {
            if (hasRift)
            {
                ResetRift();
            }
        }
        for (int i = 0; i < enemies.Count; i++)
        {
            enemies [i].GetComponentInChildren <Mind> ().active = true;
        }

        tm.DestroyAllBuses();
    }