Esempio n. 1
0
 private void OnEnterPortal(int portalId, Drone d)
 {
     if (activated)
     {
         Debug.Log("Enter portal " + portalId);
     }
 }
Esempio n. 2
0
        private void OnExitPortal(int portalId, Drone d)
        {
            if (activated)
            {
                Debug.Log("Exit portal " + portalId);

                portals[portalId].cleared = true;
            }
        }