有没有简单易懂且实用的 JBox2D 教程?
我正在寻找最新版本的 JBox2D 的一些初学者教程。我找到的那些都已经过时了。如果可能的话,关于如何在 Android 上应用整个东西的教程也会很好。我只是想制作一些玩家无法穿过的墙并施加一些重力。
提前致谢。
I am looking for some beginner tutorials for the newest release of JBox2D. The ones I have found are all outdated. If possible a tutorial on how to apply the whole thing on android would also be good. I am simply trying to make some walls that the player cant go through and apply some gravity.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以在此处找到针对初学者的 JBox2D 教程
you can find JBox2D tutorials for beginners here
嗯,第一个谷歌结果似乎很有用:
http:// /www.4feets.com/2009/03/2d-physicals-on-android-using-box2d/
但是,如果您了解一点 c++ 或 actionscript,则可以成功使用教程对于这些语言。 C++ 和 ActionScript 中的 Box2d 代码与 Java 代码非常相似。
所以你可以尝试学习这些用c++编写的教程:
http://www.kerp.net/box2d/
Hмм, the first google result seems useful:
http://www.4feets.com/2009/03/2d-physics-on-android-using-box2d/
However, if you know c++ or actionscript a little, you can successfully use tutorials for these languages. Box2d code in c++ and actionscript is quite similar to Java code.
So you can try to learn these tutorials written in c++:
http://www.kerp.net/box2d/
如果您想了解如何使用物理引擎,请查看此处的 wiki,特别是在 Testbed 页面。测试台提供了运行引擎所需的一切,因此您只需使用物理代码本身。
If you are trying to learn how to work with the physics engine, please look at the wiki here, specifically at the Testbed page. The testbed provides everything you need to run the engine so you only have to work with the physics code itself.