Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我想在不改变其位置的情况下设置身体的旋转。我遇到了身体的功能。
body.getTransform().setRotation();
但是这个功能似乎不起作用。
难道我做错了什么 。我知道我可以做到
body.setTransform(x, y, angle);
但是我也必须通过它的位置,我不想这样做。
有没有其他办法只能改变身体角度。
如果您不希望它们更改,您可以将现有的位置和角度提供给 setTransform。例如,这将无效:
body->SetTransform( body->GetTransform(), body->GetAngle() );