Reputation: 129
I have been playing around with Game development in Java, specifically with the Slick 2d game engine. I have an idea for a simple game, but I need a physics engine.
I have been searching the internet looking for a well-documented, free physics engine. I have never used a physics engine so I am looking for something relatively simple, with a lot of examples and documentation.
Upvotes: 4
Views: 15197
Reputation: 133567
What about JBox2d? It's a straight port of the more notorious Box2D written in C++.
Upvotes: 4
Reputation: 2251
Box2D is pretty much the standard 2d physics library for most games out there. There's a port to Java here which is quite easy to use:
Upvotes: 6