Box2D:如何获取静态物体的位置?
I have a Box2D world with a mixture of static and dynamic bodies. On collisions, I can only get the positions of the dynamic ones.
Is it possible to get the positions of static objects?
N.b., this is a development of a previous question, Box2D: How to get the position of a sensor?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我找到了一个办法——在碰撞中,AABB的中心会给出位置
I found a way - in the collision, the center of the AABB will give the position
您可以使用以下代码获取位置向量:
You can get the position vector using the following code: