Unity Physicals Rigidbody with multiple colliders
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/
【推荐】博客园的心动:当一群程序员决定开源共建一个真诚相亲平台
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】Flutter适配HarmonyOS 5知识地图,实战解析+高频避坑指南
【推荐】开源 Linux 服务器运维管理面板 1Panel V2 版本正式发布
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步