Esempio n. 1
0
 void OnTriggerEnter(Collider other)
 {
     // print("big trigger detected");
     if (other.CompareTag("ProximityChecker") && isActive == true)
     {
         print(other.name + "in Proximity");
         taxi.Honk();
     }
 }