正如标题所示,你能改变一个身体的质心,还是被中心的自动计算所困?
我可能会使用多个灯具,但还有其他方法可以手动设置中心吗?
答案 0 :(得分:1)
您可以像这样设置质心
MassData data = body.getMassData(); //get the mass data from you body
/** Set the position of the shape's centroid relative to the shape's origin. **/
data.center.set(10, 10);
body.setMassData(data);