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 ...
3
votes
3answers
641 views
Simple 2D rocket dynamics
I am currently experimenting with some physics toys in XNA using the Farseer Physics library, however my question isn't specific to XNA or Farseer - but to any 2D physics library.
I would like to add ...
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 ...
2
votes
4answers
1k views
How can I manipulate a RagDoll made with farseer physics in Silverlight?
I made a ragdoll similar to the one in this demo. This rag doll will be used for a turn based rpg game where the physics will be used for animations such as character taking damage, dying, falling ...
1
vote
3answers
92 views
How to determine if an object is at rest?
Using the physics helper library.
I'm trying to figure out how I can determine whether a physics object is at rest. Does anyone know how to do this or have any ideas of what I could do?
An example ...
1
vote
1answer
544 views
Farseer physics…hello world…?
I have no idea why but I cant seem to find out why this isn't working...
I'm trying to make something really simple, like something that just falls off the screen.
It seems like with the latest ...
1
vote
1answer
322 views
XNA & Farseer - Collision with a random edged shape
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 ...
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
1answer
92 views
C# XNA Farseer - Creating Shapes From Textures
I want to create collision vertices to attach to bodies in XNA with Farseer, according to loaded Texture2Ds.
A caveat, first of all. is that I'm not using Farseer for anything other than collision. ...
0
votes
0answers
44 views
Raycast missing detections using Farseer Physics in VB.NET.XNA
I'm using a raycast to determine the anchor location of a ropejoint. By using some simple draw calls, I can see that the ropejoint is being reliably created at the point the raycast returns. My ...
0
votes
2answers
106 views
Farseer Meter/Pixel Ratio
I've done a lot with box2d in c++, and am giving C# a try. It looks like Farseer is generally used in place of Box2D (I'm aware of Box2DXNA, but it seems a little outdated.) So, Farseer is what I've ...
0
votes
1answer
202 views
XNA Farseer Physics Troubles
So I have a game object and I create a body by loading in a texture from file and converting it:
Texture2D polygonTexture = Texture2D.FromStream(Game.graphicsDevice, ...
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
2answers
203 views
How can I rotate this matrix around the center?
My XNA game uses Farseer Physics, which is a 2d physics engine with an optional renderer for physics engine data, to help you debug. Visual debug data is very useful, so I have it setup to be drawn ...
0
votes
1answer
274 views
Farseer Physics Engine - Body won't go past certain speed no matter the impulse applied
Hello
I'm relatively new to farseer engine, which i'm currently trying to integrate with my own.
I decided to test a few things, saw the samples, but there's is definitely something wrong about what ...
0
votes
1answer
479 views
XNA Farseer - How to actually make it work?
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 ...