2

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.

chrypthic
  • 579
  • 1
  • 6
  • 15

3 Answers3

3

you can find JBox2D tutorials for beginners here

0

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/

Dmitry Sapelnikov
  • 1,129
  • 8
  • 16
0

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.

Daniel Murphy
  • 852
  • 7
  • 14