XNA is a cross-platform framework from Microsoft that facilitates game development with .NET. Supports: Windows, Xbox 360, Windows Phone 7, Zune, Silverlight (via SilverSprite) and iPhone/iPad (via XNA Touch).

learn more… | top users | synonyms (1)

0
votes
0answers
8 views

How do I translate the SkeletonPoint's Value using Kinect SDK before mapping them to the colorImage?

I am creating a project on Kinect where I need to translate and rotate the skeleton of the user so that it would be always facing the Kinect. I do know that I cannot change the actual values of the ...
0
votes
1answer
21 views

Getting sprites to move on their own in XNA

In my code, I am attempting to move three sprites on the X axis at one direction and speed. However, when I wrote the code in my class, it compiled fine without errors, but when the game started, the ...
0
votes
2answers
19 views

Comparing int's and Vector2's

I'm trying to compare a int to a Vector2 position in an if statement in my code, however I get the error: Operator '<=' can not be applied to operands of type 'Microsoft.Xna.Framework.Vector2' and ...
0
votes
0answers
29 views

Creating a game laucher in XNA

My current game needs to have a launcher which will ask for username and password and display some things like a feed from the game site. After you login the full game will launch and the user will be ...
0
votes
0answers
14 views

How to save a file into Content from another project

I have an item.xml file with all items data for my game. It's a custom structure, not the XNA type XML. I set the properties as Build action: Content and Copy always to output directory. I wrote a ...
1
vote
0answers
46 views

Playing 30 sound effects at the same time repeatedly

I'm trying to play about 30 piano notes at the same time in my XNA application on Windows Phone 7. I have imported and loaded the wave files like below protected override void LoadContent() { ...
1
vote
1answer
41 views

XNA Scale and Render Targets

I'm working on a top down Strategy/RPG/Tower Defense XNA Game for Windows, and I'm running into an issue while scaling. My display mode is 1680 X 1050, and that is what I'm setting the ...
0
votes
0answers
48 views

Pixel Color does not always appear the same

I have a falling sand style game that is currently only using two colors, black and cyan. I am setting the colors of a texture using texture.SetData<Color>(colorArray); The main program updates ...
0
votes
1answer
39 views

Prevent serialization of standard properties

I apply serialization to an instance of class 'Rectangle' in C#/XNA. It works, but it does serialize the property 'Location' of the rectangle. Since this is a default class i cannot use the option ...
0
votes
1answer
19 views

XNA 4.0: terrain glitches caused by SpriteBatch

I'm trying to implement terrain collision in XNA so I've added some dynamic text that allows me to test whether calculations are correct. Everything was rendered just fine until I called: ...
1
vote
1answer
41 views

Finding in an intersection of a rectangle in a iterating list

I'm having an issue when trying to find an intersection of a rectangle. I have a list of rectangles that are being drawn to the screen in a for loop. I want to find if the mouse intersects with any of ...
0
votes
0answers
10 views

3D - Using Buffers and UserIndexes at the same time

One of the basic tutorial involving 3D programming involves the terrain map. However, to go a little further with this I though it would be nice to have some shoreline. So I made a similar object to ...
0
votes
1answer
24 views

RenderTarget2D not preserving transparent background

I'm working on a project. All 2D using spriteBatch. I'm having things like explosions use custom effects that do not apply to the rest of the image. So here is my flow so far: 1)Clear the ...
0
votes
1answer
55 views

GetState.IsKeyDown() never returns true (Microsoft.Xna.Framework.Input.Keyboard)

I am trying to check if a key is pressed on the keyboard with Xna.Framwork.Input, but the method i use doesn't see to work. My code (only important parts): using System.Threading; using ...
0
votes
2answers
32 views

System.Drawing in XNA

I am currently working on a 2D pinball game utilizing XNA and VS2010, and have run into problems. First of all, I have two paddles, each with a bounding box. As far as I can tell though, it is ...
0
votes
0answers
24 views

XNA 4.0 contentloadexception was unhandled

This is my first time doing an XNA project. I've been following a tutorial (http://rbwhitaker.wikidot.com/using-3d-models), and I'm having trouble running the game, returning the error in question. ...
1
vote
2answers
71 views

Extracting vertices from fbx model using C# and XNA 4.0

I am attempting to iterate through the vertices of an FBX model using C# and XNA 4.0. I think that if I can get access to the vertices, then I'll be able to access the other parts such as face ...
0
votes
2answers
48 views

How to rotate a bounding box in XNA?

I'm trying to rotate a bounding box in xna, this is how I usually do it: new Rectangle((int)position.X, (int)position.Y, (int)texture.Width, (int)texture.Height); but It currently does not ...
0
votes
0answers
23 views

How to make a texture end if it hits another texture in xna?

I'm trying to implement projectiles in my game, problem is, most projectiles I've seen involve circular bullets and I have to use a straight line (I want the design to be like that) basically what I ...
0
votes
2answers
46 views

3d menu error in XNA project

I am trying to build 3d menu in XNA and it is showing NotImplementedException error. A menu with four buttons to select.Did I miss anything in this project? I am new to XNA. Code is as follows. Thanks ...
0
votes
0answers
37 views

menu loading error in XNA project to load 3D menu

I was trying to do 3d menu in XNA but i was getting error as following "The name 'item_OnTap' does not exist in the current context." I am New to XNA programming.Thank you in advance. ...
0
votes
1answer
69 views

XNA 4 - How to not spawn asteroids in same row?

I have asteroids spawning in my game with a timer on when they spawn and I want them to spawn one at a time. My problem is they all spawn in the same row, so as they increase speed going left there ...
0
votes
2answers
44 views

How to detect if a key is pressed multiple times in xna?

I'm trying to get a texture to toggle on and off when the F1 key is pressed, I can get it to turn on, but it won't turn off again unless I use a separate key to do so. This works for me: ...
0
votes
1answer
26 views

XNA 4.0 - Rotate around own axis and around world centre

I have planets rotating around Sun. Sun is in the middle. I want to make planets rotate around both the sun and their own axis. My rotation code is: world_.SetValue(Matrix.CreateRotationZ(-(float) ...
0
votes
0answers
27 views

XNAnimation with XNA 4.0

XNAnimation with XNA 4.0 Reply Quote Has anyone managed to use multiple animation clips with XNAnimation on XNA 4.0? I added the XNAnimation projects (dev) to my project and it works on Windows and ...
0
votes
1answer
47 views

XNA 4 - Timer not Spawning Asteroids

I'm trying to spawn my asteroid after a certain amount of time. I do this by making a timer. Here's the update method. public void Update(GameTime theTime) { gameTime = theTime; ...
-1
votes
1answer
46 views

trying to do image menu in XNA program and stuck at constructor error

this is the code for ImageMenuGame.cs. trying to do menu in Xna, practising for game development and it is showing error as constructor error. I am New to XNA. Also pasting the screenshot along with ...
0
votes
0answers
12 views

My class will not draw properly on the screen, no errors just not drawing

Ive been working on a side scrolling game and ive almost finished the game, when it came to making a class for an owl the code was similar to other i just used the same methods but now when it comes ...
0
votes
0answers
45 views

XNA 4.0 Mapping generated texture on SPHERE

Even though it sounds easy... i cannot find a tutorial on how to apply a texture to a Sphere. Basically I imported sphere model and I have on the screen with some basic lightning effects. Also i ...
-2
votes
0answers
104 views

XNA/C# - First Person Game camera, need to attach gun

Okay, so I have a first person camera class set up within my game. It works with my mouse and WASD. I can look all around and move perfectly. Now I just need two things: 1) The gun. I have a gun ...
0
votes
0answers
36 views

SlimDX.DirectInput Z-Axis Initialization

I am programming, in C#, 2 Logitech Attack 3 joysticks using SlimDX.DirectInput classes. All of the buttons and axes seem to be initialized correctly and do as expected during game play. These ...
0
votes
0answers
19 views

SWF file in XNA 4.0?

currently I've been assigned to work out for enabling the flash file (.swf) in XNA. Somehow what I studied about this issue is, .swf file is unable to embedded into XNA project unless some code is ...
0
votes
0answers
25 views

how to add tagdata and model.bones to blender models?

i'm working into some 3D game with 3rd person camera and i tried marble maze tutorial from msdn... i do noticed that in there for collision detection they are using tagdata which come from model.tag ...
0
votes
0answers
36 views

Trying to find the most efficient way of storing and loading information for a TileMap game engine

I've been trying to write a Tilemap engine which uses an array of Tile classes to store information. These Tile classes store 8 pieces of information (all numbers), including the texture index and ...
0
votes
1answer
78 views

XNA 4 C# - Not Alpha Blending to Black

I'm trying to have my Splash Screen fade into black. I realized it fades into whatever color the screen is cleared with in the default line GraphicsDevice.Clear(Color.White); in the default update ...
0
votes
0answers
18 views

Can I make hud outside viewport?

I need help. I just made a viewport. Sizes are: x = screenwidth; y =screenheight - B; How can I work with the remaining side of screen (x = screenwidth .... y = B) I want to draw string ...
0
votes
1answer
26 views

Make game panel

1 )I am currently making 2d tank game. I need to make panel where I could draw information about tanks etc. What is the best way to do that? Do I need to make 2 viewports (1 for game and 1 for panel) ...
0
votes
1answer
39 views

Strange Per-Pixel Collision in XNA [closed]

I'm having a very strange problem where the bounding box for one of my objects in my game isn't exactly over the texture, this results in the collision being reported somewhere else. Its not really ...
0
votes
1answer
38 views

Creating a rectangle within a class

So basically I'm trying to figure out how to implement rectangles with in a class around each bullet I fire. It's a missile command type game. What I can't figure out is WHERE I would declare the ...
1
vote
0answers
40 views

Controlling Player Movement After Per Pixel Collision

I have implemented a full per pixel collision system that accounts for rotation, and its very accurate. It returns a simple bool on collision. However I am not sure how to handle the collision from ...
1
vote
1answer
77 views

Can't access build configuration manager or build configurations in Visual C# 2010 Express

Full Story Typically, when I install Visual C# 2010 Express, the first thing that I do is switch to Expert Settings. That gives me access to build configurations, and the respective manager. This ...
0
votes
1answer
61 views

Memory leak when setting texture = new Texture2D(…)

I have the following code as part of a game: protected override void Draw(GameTime gameTime) { GraphicsDevice.Clear(Color.Black); spriteBatch.Begin(); ...
1
vote
0answers
42 views

XNA 4 VertexPositionTexture triangleStrip sporadically disappearing

I am drawing a traingleStrip using VertexPositionTexture and BasicEffect that extends from the first person perspective of the screen out a certain distance on the Z axis. In a loop I pass start and ...
2
votes
1answer
79 views

Optimal way to set pixel data?

I'm working on a "falling sand" style of game. I've tried many ways of drawing the sand to the screen, however, each way seems to produce some problem in one form or another. List of things I've ...
1
vote
0answers
40 views

XNA AccessViolationException (Garbage collection?)

I'm getting the following error (seemingly randomly) in a game that I'm writing and haven't been able to find any documentation on it. When I run it in Debug, it breaks in the disassembly with the ...
0
votes
2answers
38 views

Initializing a non-static class with a texture2d variable

I'm learning XNA (and C# in general), and while trying to write my own little sidescroller for learning purposes, I stumbled on the following problem. The level is build from tiles, and since I don't ...
1
vote
1answer
88 views

Collisions between player and enemies bullets?

So, I'm programming a kind of Bullet Hell game, and I've made code to detect the collisions, and it actually works... But I think there's an easier way to do this. Let me explain. In the code, ...
0
votes
1answer
48 views

Xna Create BoundingBox Detection Manually?

So I have managed to create and successfully test boundingbox. I have now got all 8 corner points in vector[] corners = new vector[8] and vector[] corners1 = new vector[8] and just wondering what the ...
1
vote
1answer
37 views

XNA - How to show different screens?

I am a newbie in XNA. I am creating a game which have 2 screens(main screen, playgame screen) what I want to do is that when on mainscreen user presses number "1" the screen switches to a new screen ...
0
votes
1answer
55 views

C#/XNA Stopping Songs In Different GameStates

I am trying to have music play in my Menu state but cut out after I switch to my Game state.

1 2 3 4 5 17