other | El otro Collider2D involucrado en esta colisión. |
Enviado cada frame donde otro objeto está dentro de un trigger collider adjunto a este objeto (física 2D solamente).
Información adicional sobre el otro collider se reporta en el parámetro Collider2D pasado durante la llamada.
Note: Trigger events will be sent to disabled MonoBehaviours, to allow enabling Behaviours in response to collisions.
Mirar también: Clase Collider2D, OnTriggerEnter2D, OnTriggerExit2D.
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void OnTriggerStay2D(Collider2D other) { other.attachedRigidbody.AddForce(-0.1F * other.attachedRigidbody.velocity); } }