0
votes
2answers
26 views
cant install xna
hi
i trying to install xna
when the installation starts i got an error says "XNA GSE 1.0 refresh requires Visual C# 2005 express edition sp1..."
i use windows 7
and i have visua …
0
votes
1answer
38 views
Fetching the vertices from the backbuffer (HLSL) on XNA
Hello and sorry for the obscure title :}
I`ll try to explain the best i can.
First of all, i am new to HLSL but i understand about the pipeline and stuff that are from the fairy w …
1
vote
3answers
85 views
Is there a 3D equivalant to clamp in XNA?
I'm building a 3D game but i only plan on using a 2D perspective thus not taking the z axis into the equasion,
i want to be able to limit the movement of one of my models so it doe …
2
votes
2answers
51 views
Simple XNA 2d physics library
Working on a 2D project and wanted some recommendations on a simple 2d physics library for use in C# with the XNA framework. I was looking at Farseer or physics2d. Anyone have any …
0
votes
1answer
37 views
XNA Matrix Camera Scale Issue in 2D Game
Hi, I followed the tutorial on
http://www.david-amador.com/2009/10/xna-camera-2d-with-zoom-and-rotation/ to achieve a camera that follows my player sprite with zoom in/out functio …
3
votes
3answers
140 views
Which would be the best 2D graphics library?
Okay, I bet this question might have been asked dozens of times before, but at the end of the day, I am still confused.
I am working on a charting/plotting application. My applica …
6
votes
10answers
423 views
C++ as first language for Windows game programming?
I'm a hobbyist programmer with a fair grasp of Python and I'm currently learning C. Recently I was talking to a colleague who also wants to learn to program. In his case, he wants …
0
votes
2answers
118 views
XNA - Merge sprites for better drawing performance?
Hello!
I read somewhere that when rendering a lot of 3D objects one could merge these to form a giant mesh so that only one draw call would be made. Therefore letting the, quote: …
1
vote
1answer
74 views
XNA Zune HD application won’t exit gracefully
I have and built and deployed the application created by the new project template for the zune hd. The problem is whenever the application exits, the Zune reboots. This happens whe …
3
votes
2answers
83 views
Optimizing a high-traffic function in XNA
I have a function that's called hundreds of thousands of times per update, and i need to optimize it. Now, i generally follow the "don't optimize too soon" rule but this is a criti …
0
votes
1answer
66 views
Cannot get this triangle to display
Hi, I'm following the XNA 3.0 Game Studio Unleashed Book by Chad Carter.
I'm on chapter 4 and the following listing should render a textured triangle onto the game window but for …
1
vote
2answers
246 views
How to get camera up vector from roll, pitch, and yaw?
Hello,
I need to get an up vector for a camera (to get the right look) from a roll, pitch, and yaw angles (in degrees). I've been trying different things for a couple hours and h …
1
vote
1answer
41 views
Applying Coefficient of Restitution in a collision resolution method
I have a collision resolution method in my physics engine, that goes like this:
Vector2 n1pos = n1.NonLinearSpace != null ? n1.NonLinearPosition : n1.Position;
Vector2 n2pos = n2. …
0
votes
3answers
85 views
Area constraint blows up my physics simulation if a body slams into it too fast
I have a physics simulation and it allows you to place area constraints, so that the bodies within will not exit that area. However if an atom goes past one of the "walls" of the a …
1
vote
1answer
37 views
How to get x and y coordinates from a linear grid simply?
I have myself a linear grid of Vector2s stored in a Vector2[,] array, and i also have another Vector2 that lies within this grid. How can i simply extract both the nearest 4 grid p …
