other | The Collision2D data associated with this collision. |
Sent when a collider on another object stops touching this object's collider (2D physics only).
Further information about the objects involved is reported in the Collision2D parameter passed during the call. If you don't need this information then you can declare OnCollisionExit2D without the parameter.
Note: Collision events will be sent to disabled MonoBehaviours, to allow enabling Behaviours in response to collisions.
See Also: Collision2D class, OnCollisionEnter2D, OnCollisionStay2D.
#pragma strict public var characterInQuicksand: boolean; function OnCollisionExit2D(other: Collision2D) { characterInQuicksand = false; }
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { public bool characterInQuicksand;
void OnCollisionExit2D(Collision2D other) { characterInQuicksand = false; } }
Did you find this page useful? Please give it a rating: