如何在box2d中将运动限制为垂直
我有一个 box2d 主体,它有一个球的固定装置。它只是在一个矩形盒子的顶部上下弹跳。有时它会无缘无故地从盒子里掉下来。我有办法将重力限制为仅垂直,这样我就可以解决这个问题吗?
I have a box2d body that has a fixture of a ball. It just bounces up and down on top of a rectangular box. Sometimes it will fall off of the box for no apparent reason. I there a way to restrict gravity to only vertical so that I can solve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 b2LineJoint 让您的身体仅向一个方向移动
Use b2LineJoint to allow your body to move in one direction only
或者您可以使用棱柱形接头。观看此视频。
Or you could use a prismatic joint. Check out this video.