I have implemented the Farseer engine into my 2D XNA platformer project.

I created a Body using an image of piece of terrain which loads and draws nicely, I created a second body which is the player and it draws but doesn't do anything.

How do I make the Player body object actually work and apply gravity and collide with the terrain object?

I have searched high and low and can't seem to find many tutorials/guides on how to do the basic stuff with farseer.

link|improve this question
feedback

1 Answer

I believe there is a property called BodyType or something similar that you need to change for anything to actually happen to the body. The default is for the body to not take part in physics simulations, so you need to change it in order for things like gravity to work.

Another thing worth noting is that bodies will automatically go to sleep when the engine doesn't think anything is going to happen to them, so if something isn't behaving the way you would expect try changing the value.

I would recommend looking through the Box2D Manual because for the most part Farseer replicates the original Box2D API. Things like memory management, obviously, are different because of the way the .Net framework works. Some experimentation may be necessary.

link|improve this answer
I've started to make it work. the player Body object I have created is affteced by gravity. I use things like ApplyForce() and ApplyTorque() but it just still falls in a straight line. Just need to figure out how to make the body collide with the terrain and work as it should. – Jamie Mar 23 '11 at 12:28
I can't solve the "falling in a straight line" problem. Did you figure it out? – Getimoliver Jun 13 '11 at 4:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.