I wrote couple of simple board games since i started on android learning, Please let me know is there any tutorial or links, where i can start with physics library with libgdx, looking for something like basics of physics with libgdx
Asked
Active
Viewed 1.3k times
3 Answers
9
I would start with the official documentation at the libGDX wiki. That will get you up and running with some basic examples. Once you're beyond the basics, using the box2d manual will fill in all the details. It's very easy to read, and it's not hard to translate C to Java.

Steve Blackwell
- 5,904
- 32
- 49
-
1Should have a look here http://rotatingcanvas.com/using-box2d-in-libgdx-game-part-i/ – Sajidur Rahman Aug 25 '15 at 20:31
5
These tutorials might be helpful: http://decisiontreegames.wordpress.com/2012/04/14/using-box2d-in-libgdx-game-part-i/

Marqs
- 17,800
- 4
- 30
- 40
-
2http://decisiontreegames.wordpress.com/ is marked private by its owner. Can I get an invitation? – Bilthon Jun 18 '13 at 03:24
-1
You may find very useful information about how to use box2d in android in this book - Android NDK Beginner's Guide

ltorje
- 47
- 2
-
2That book is for using the NDK. Using box2d with libgdx (where it is integrated) is going to be a whole different ballgame. – Steve Blackwell May 02 '12 at 22:37