Tagged Questions
9
votes
3answers
8k views
Farseer Physics Tutorials, Help files
Is there a tutotial or help file, suitable for a beginner c# programmer to use.
4
votes
2answers
158 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
1k views
OnCollision event handler problems in C# XNA with Farseer Physics
I have this working ok(ish) in my game at the moment, but i'm not fantastic at maths. When two primatives collide, I want them to smash up into tiny bits if the force applied to a primative was over a ...
3
votes
3answers
670 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
527 views
Farseer physics (Box2D) - Fixture rotation around point
I'm having a bit of trouble with rotating a Fixture in the Farseer Physics Engine (using XNA). Basically, i have a fixture, set up as such:
private void setUpPhysics(World gWorld, Vector2 position)
...
1
vote
1answer
113 views
“nullreferenceexception was unhandled” in body.cs of farseer physics engine
I'm a c++ programmer trying out c#. I've done a lot with box2d in c++, but this is my first time with c#. So, I'm trying to make a simple game with farseer physics engine. When I try to compile my ...
1
vote
1answer
188 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
3answers
585 views
How to start, where to learn ( Farseer )
Last few days I'm trying to start with farseer library, however i just can't get anything work properly. Documentation is very poor and there aren't many ( any? ) resources on the internet relating to ...
1
vote
1answer
619 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
346 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 ...
0
votes
1answer
135 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
1answer
140 views
FarSeer : Remove Object On MouseClick
I'm still developing a small game, where I want to remove boxes when I click with mouse using FarSeer Engine 3.3 [if there is a solution I may already use 3.1]
Do not show me the example sources ...
0
votes
2answers
142 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
71 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
149 views
Farseer Physics Vector2 class
I'm trying to make an XNA game using Farseer Physics, and it's complaining that XNA and Farseer both have a class called Vector2.
How would I make it only use one of them?
0
votes
1answer
249 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
330 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
175 views
Creating an island for separate gravity control on XNA using Farseer Physics Engine 3.0
I just started using the Farseer engine and so far it's been pretty easy to understand and implement in my aps. I was wondering if there was a way to put a control into a different "world" so that I ...
0
votes
2answers
241 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
168 views
MonoTouch JIT doesn't seem to like custom hashset class
I'm working on getting FarseerPhysics to compile in MonoTouch. It works fine when I use the HashSet in System.Collections.Generic, however Farseer has its own Hashset class it uses for Xbox 360 and ...
0
votes
1answer
296 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
391 views
Farseer acceleration with Gravity help?
I am new to the Farseer library and I am attempting to make a C# forms application using Farseer. I have created a form, placed a floor on the form and I am dropping a single rectangle from the top ...
0
votes
1answer
511 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 ...
0
votes
1answer
161 views
Extracting edges of a texture into an array for collision detection
I'm in the early stages of creating a 2D game as a something to do in my spare time.
For this game I want to create destructible terrain and was hoping I can get some good ideas on the matter. I plan ...
0
votes
4answers
218 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 ...
0
votes
2answers
735 views
Farseer setup in Visual studio to work with C# and XNA
I have downloaded the folder containing the Farseer Physics engine. and I have a game that I am working on using C# and XNA.
The issue Im having is that I dont know how to add the files for Farseer ...