Version: 2023.1
LanguageEnglish
  • C#

Joint2D.enableCollision

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public bool enableCollision;

Description

Should the two Rigidbody2D connected with this joint collide with each other?

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.

See Also: Rigidbody2D class, connectedBody.