Most voted "xna" questions
Microsoft XNA is a framework for game development for Windows Pcs, Xbox 360 console and Windows Phone 7.
Learn more…5 questions
Sort by count of
-
8
votes1
answer862
viewsCapture buttons pressed on video game control reliably
I want to use an Xbox controller to control a program. It’s not a game, it’s just an app Windows Forms. I don’t want to use XNA because I don’t want to force the redistributables to download when…
-
1
votes2
answers93
viewsHow to use Window.Clientbouds inside a class in XNA
I’m having a hard time delimiting the character’s movement to the edge of the screen. In class Game1 which is my main I can use Window.ClientBounds, but when I use this function within the class…
-
1
votes1
answer46
viewsNew position X and Y depending on direction and distance?
I’m doing a mini shooting game on XNA but I’m not able to imagine how to calculate the following: Knowing the position of the center of the image, the direction in which it is pointing and the…
-
1
votes1
answer141
viewsDetect collision from a rotated rectangle?
I’m using the following code to know if a point is inside a rectangle: public bool Intersect(ÍcaroDantasCollisions.Rectangle rectangle) { if(x >= rectangle.x && x <= rectangle.x +…
-
1
votes2
answers21
views