Ejemplo n.º 1
0
Archivo: Player.cs Proyecto: harjup/Xyz
 void OnTriggerEnter(Collider other)
 {
     other.GetComponentInParentAndExecuteIfExists<Beacon>(OnBeaconEnter);
     other.GetComponentAndExecuteIfExists<StadiumActiveArea>(OnStadiumActiveEnter);
     other.GetComponentInParentAndExecuteIfExists<Doorway>(OnDoorwayEnter);
     other.GetComponentInParentAndExecuteIfExists<Pusher>(OnPusherEnter);
 }