Ejemplo n.º 1
0
 void OnTriggerEnter(Collider other)
 {
     if (other.gameObject.CompareTag("Cow"))
     {
         Debug.Log("Cow entered pen trigger");
         Cow cowComponent = other.gameObject.GetComponent <Cow>();
         cowComponent.DropItem();
     }
 }