Tagged Questions

5
votes
3answers
2k views

Farseer or Box2D? Top-down shooter physics implementation

Which one of these would fit a top down shooter better? I've heard that Box2D performs faster, but I've also noticed that it lacks wider community support for XNA (it rather seems to be used for ...
4
votes
2answers
146 views

How do I efficiently simulate a grid of static rectangles in a physics engine?

I'm making a space shooter which takes place in a big dungeon, which consists of large rectangles to define walls. Everything in the game is physically simulated using Farseer Physics. There's one ...
2
votes
1answer
301 views

How to parse image for border vertices? Complex object geometry (farseer physics)

How could I create body vertices by scanning image and detecting it's shape (of it's non-transparent pixels)? I wanna create complex geometry, and I actually have no real idea where to start, so any ...
1
vote
1answer
143 views

Farseer 3.3 Checking if a non enabled body will collide if it were to be enabled (spawning)

I am using Farseer 3.3 and XNA. I have a problem that i just cant solve in a nice way. I have a situation where there is a world with bodys in it all working away doing there thing. I then have an ...
1
vote
2answers
687 views

Farseer Physics XNA Geom 'Tripping'

I have an issue similar to http://farseerphysics.codeplex.com/Thread/View.aspx?ThreadId=72364 I have a rectangle player geom, and many rectangle tile geoms lined up next to each other. Occasionally ...
0
votes
0answers
47 views

Rotation with fixture in farseer WP7

I want to rotate with objects in WP7 so in Update method I have this: for (int i = 0; i < _obstacleFixtures.Count; i++) { _obstacleFixtures[i].Body.Rotation += 0.02f / _pixelsPerMeter; ...
0
votes
1answer
60 views

Moving A Body With A Texture

I am using Farseer Physics Engine to build a "Monster Dash" like game targeted for the PC using C# and XNA, I am trying to move a body with it's texture, the texture is built from parts so they all ...
0
votes
2answers
282 views

Farseer physics: Collision detection issues

I have three rectangular blocks: ground block, blue block, hero block. Ground is placed at the bottom of screen, blue block lay on ground block and hero block is falling down to blue block. I have ...
0
votes
1answer
280 views

Farseer 3.3 DebugViewXNA - Hooking it up

I have been trialling farseer 3.3 in XNA. For the life of me I cannot get DebugViewXNA to work. I have a World object with a couple of bodies in there. The bodies are fixed to polygonal models, so I ...
0
votes
1answer
49 views

How to determine if a force is making a difference

I'm making a game in which I'm creating an animation system that speeds up based on the velocity of the character. The problem is this won't work for the instance of a treadmill. I do not have the ...
0
votes
4answers
215 views

Plotting points for a projectile before a force is applied

For example in Peggle or Apple Jack, the user can move around a curve showing where the ball (or the washing machine / panda or whatever) is about to go before the user has requested that the ...