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.
CloseFor 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.
CloseShould collision detection be enabled? (By default always enabled).
Disabling collision detections is useful when you have a ragdoll which is setup to be kinematic and you want to avoid
heavy collision detection calculations on that rigidbody.
detectCollisions
is not serialized. This means it doesn't show up in the Inspector
and when Instantiating the rigidbody or saving it in a Scene, it will not be saved.
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { public Rigidbody rb;
void Start() { rb = GetComponent<Rigidbody>(); }
// Let the rigidbody take control and detect collisions. void EnableRagdoll() { rb.isKinematic = false; rb.detectCollisions = true; }
// Let animation control the rigidbody and ignore collisions. void DisableRagdoll() { rb.isKinematic = true; rb.detectCollisions = false; } }