只是一个简单的问题,似乎jbox2d中缺少RopeJoint ...是真的吗,还是他们将其重命名为某种东西?

远距接头工作正常,但我想使其灵活,像绳索,而不是金属杆。 :)

    DistanceJointDef jointDef = new DistanceJointDef();

    jointDef.initialize(body1, body2, new Vec2(0,0) , new Vec2(0,-10) );

    jointDef.collideConnected = true;
    getWorld().createJoint(jointDef);

最佳答案

It's unsupported afaik。

09-25 21:37