首页 > 数据库技术 > 详细

Unity Physicals Rigidbody with multiple colliders

时间:2019-12-22 22:41:38      阅读:101      评论:0      收藏:0      [点我收藏+]

Rigidbody with multiple colliders

adding colliders changes the center of mass and rotation behaviour of a rigidbody. To set those manualy to the center of the object use:
void Start()
{
    rigidbody = GetComponent<Rigidbody>();
    rigidbody.centerOfMass = Vector3.zero;
    rigidbody.inertiaTensorRotation = new Quaternion(0, 0, 0, 1);
}

Ref: https://forum.unity.com/threads/rigidbody-with-multiple-colliders.524352/

Unity Physicals Rigidbody with multiple colliders

原文:https://www.cnblogs.com/open-coder/p/12081386.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!