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 [i've them all, already and digged them deeply] my problem stays by checking colliding of mouse with the object. At FarSeer all objects are in interaction on a world, i have to pass my mouse to this world, where it may not do anything except i want.

How can I success a function IsTheObjectClicked [by Right or Left Mouse] at FarSeer.

(more, do not give any documention from FarSeer's webpage it is not update] Thanks

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Your Mouse is not a Farseer Body, it is an input, and is handled as an input by the XNA framework.

You could create a Farseer Body, and apply the active Mouse position to it, effectively mapping the mouse position to the Body. This would allow you to interact with your Farseer world using your Mouse.

You could also just grab the mouse position when clicked, and do a position check to see if there are any Shapes at that location, and remove them.

link|improve this answer
I do not want my mouse interacts with objects it causes Impulse or Force events.But the last sentence is still what i'm using with a FixedMouseJoint, I can collect any "body" s at clicked position. Thanks for the answer (already I've solved it before) i'm surprised for downvote, what was the problem with the question is. – icaptan Oct 19 '11 at 13:08
I upvoted you back to 0 -- not sure why someone would downvote this. – Jon Oct 19 '11 at 14:17
thanks for the answer and upvote :) already your answer was correct ;) – icaptan Oct 19 '11 at 14:55
feedback

Your Answer

 
or
required, but never shown

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