I have setup Farseer in my XNA project and have a player body which falls endlessly because of gravity. What I want the player to do is "land" on the random edged image I have in the window using the create shape from image function. How do I make the player body object collide with the shape?
feedback
|
|
You shouldn't have to do anything explicitly ... just add the body into the same world and they will collide based on the properties you've given them (mass, shape, etc.).
This code sample is from the documentation. I highly suggest downloading the demos and seeing how each demo is constructed in code. it will greatly help you :-) | |||
|
feedback
|