Uninomicon

Documenting the dark corners of the Unity Engine.

User Tools

Site Tools


physicscallbacks

This is an old revision of the document!


Physics Callbacks

OnTriggerEnter

  • Will be called for all collisions for all trigger colliders on this Rigidbody.
  • There is no way to get a reference to 'this' trigger collider that was entered.1)

OnTriggerExit

  • Is not called when a Rigidbody which is part of the collision is destroyed.
  • Is not called if the Rigidbody/Collider is recreated internally2).[research needed]
  • Is not called if the trigger is disabled.

OnCollisionEnter

  • The OnCollisionEnter callback event must be attached to the GameObject with the Rigidbody you want to listen to.

OnCollisionExit

  • Is not called when a Rigidbody which is part of the collision is destroyed.
  • Is not called if the Rigidbody/Collider is recreated internally (due to modifications). [research needed]
2)
Such as when a collider is moved to a new Rigidbody
physicscallbacks.1619573827.txt.gz · Last modified: 2021/04/28 01:37 by 73.95.178.156