Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Simple XNA 2d physics library

Tags:

c#

xna

Working on a 2D project and wanted some recommendations on a simple 2d physics library for use in C# with the XNA framework. I was looking at Farseer or physics2d. Anyone have any other suggestions?

Thanks!

like image 599
Casey Avatar asked Feb 28 '23 01:02

Casey


2 Answers

There's a good list posted on the XNA Forums.

If you're only dealing with 2D, Farseer is very nice to work with, and would probably be my recommendation.

like image 186
Reed Copsey Avatar answered Mar 11 '23 00:03

Reed Copsey


I have been using Farseer for 2D. It comes with good demos and does what it needs to well enough. It is extensible easily enough thanks to the source being both provided and clearly written.

If you outgrow it you will at least know far better what your requirements are. It only took me an afternoon to learn it and start extending it.

like image 44
Godeke Avatar answered Mar 11 '23 00:03

Godeke