Version: 2022.1
LanguageEnglish
  • C#

ArticulationBody.collisionDetectionMode

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

Switch to Manual
public CollisionDetectionMode collisionDetectionMode;

Description

The ArticulationBody's collision detection mode.

Use this property to set up an ArticulationBody for continuous collision detection, in order to prevent fast moving objects from passing through other objects without detecting collisions. For best results, set this property to CollisionDetectionMode.ContinuousDynamic for fast moving objects, and set it to CollisionDetectionMode.Continuous for other objects these fast moving objects need to collide with.

Note: These two options have a big impact on the physics engine processing resources. To consume fewer processing resources, you can alternatively use CollisionDetectionMode.ContinuousSpeculative (which you can also use on kinematic objects). However, if you don't have issues with collisions of fast objects, you should leave this property set to the default value CollisionDetectionMode.Discrete.

Restriction: You can use Continuous Collision Detection only for ArticulationBodies with Sphere-, Capsule- or BoxColliders.

See Also: CollisionDetectionMode.