Ejemplo n.º 1
0
 private void OnTriggerEnter(Collider other)
 {
     if (other.gameObject.tag == "Waypoint")
     {
         if (gameObject.tag == "Boss")
         {
             boss.ChangetIndex();
         }
         else
         {
             waypointSystem.IncrementIndex();
         }
     }
 }