是否应启用碰撞检测?(默认情况下始终启用)。
当您有一个设置为运动学的刚体,并且您想要避免对该刚体进行繁重的碰撞检测计算时,禁用碰撞检测很有用。 detectCollisions
未序列化。这意味着它不会显示在检查器中,并且在实例化刚体或将其保存在场景中时,它不会被保存。
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; } }