只是一个简单的问题,似乎Jbox2d中缺少RopeJoint ......是真的如此,还是将它重命名为某种东西?
距离接头工作正常,但我希望它具有弹性,如绳索,而不是金属杆。 :)
DistanceJointDef jointDef = new DistanceJointDef();
jointDef.initialize(body1, body2, new Vec2(0,0) , new Vec2(0,-10) );
jointDef.collideConnected = true;
getWorld().createJoint(jointDef);