Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


enableCollision

Should the two Rigidbody2D connected with this joint collide with each other?
Read time 1 minuteLast updated 5 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.Physics2DModule
public bool enableCollision { get; set; }

Remarks

When this is disabled, the two Rigidbody2D connected with this joint will never produce collision or trigger contacts with each other. When this is enabled, the Rigidbody2D are allowed to produce collision or trigger contacts should they be configured to do so.
NOTE: When this is disabled but no Joint2D.connectedBody is specified then no collision or trigger contacts are produced with any implicitly Static Collider2D i.e. Collider2D that are not attached to any Rigidbody2D.
Additional Resources: Rigidbody2D class, Joint2D.connectedBody.