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

learn more… | top users | synonyms

0
votes
1answer
22 views

Farseer ContactListener is not working

I'm using Farseer in my XNA project, but I have some trouble with the ContactListener. I created a class for my ContactListener but I always get these two error messages and I don't know how to fix ...
3
votes
0answers
31 views

XNA weird terrain tearing

Let me post the images first... Solid shot where tearing occurs And wireframe shot of that place I am mostly using mostly using Riemers tutorial while the render code is.. Main render ...
0
votes
0answers
19 views

How to use shaders in MonoGame?

Can someone tell me, how to use shaders in monogame? I have this errors: http://gamedev.stackexchange.com/questions/46994/has-anyone-got-the-krypton-lighting-engine-working-in-monogame-for-windows-8 ...
0
votes
1answer
19 views

How do I remove some of the bones from the World of Warcraft model?

The wow model viewer exports the model with 150 bones, and XNA SkinnedEffect supports a maximum of 72 bones. Can someone help me to solve this problem?
0
votes
1answer
24 views

XNA - Memory leak while saving frames

I use XNA game project for creating frames of my 3D scene. However i got a memory leak while using MemoryStream. Code below is called as a part of Draw function. byte[] FrameSave() { ...
1
vote
1answer
92 views

C# How to make Stack function like List?

As part of the requirements, I'm trying to modify my code so that it can behave the same way as my original code however I can't seem to figure it out. I've already done some modification and it ...
0
votes
1answer
33 views

Monogame Content pipeline don't work

I can't understand how to set up monogame content project.. PLease, help me :) I tried to read this stuff: https://github.com/mono/MonoGame/wiki/MonoGame-Content-Processing But can't make this ...
1
vote
4answers
39 views

C# Stack not updating

For some reason the code that I modified doesn't seem to be functioning correctly. There were no exception error when debugging however it does not function the same as in the original code (list) - ...
2
votes
3answers
68 views

How to use stack instead of list?

As part of my requirements, I need to use a stack instead of a list throughout my code. I've done quite a bit of research on using the stack class however I'm finding it difficult to find any examples ...
0
votes
0answers
28 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
2answers
36 views

Xna draw order not working right

I have an 2d array of Texture2D, it holds the different parts of the map in this array. I have a problem though, when I run the game, the map is drawn correctly but for some reason the array[0, 0] ...
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
2answers
102 views

Work out whether to turn clockwise or anticlockwise from two angles

Im making a game in XNA. I have enemies and player. The enemies should turn gradually towards the player. They should work out whether they need to turn clockwise or anticlockwise, whichever is ...
1
vote
1answer
38 views

C# sprite movement pos-x double

Im working on a XNA project. I have drawn a background(skyline) and i want to move a cloud from left to right. This works whenever i use int, but the movement is too fast so i want to use a double. Is ...
0
votes
0answers
14 views

Blob/Rectangle Collision from OpenCV with XNA

I use OpenNi and Kinect to detect movement of player, and then convert them to MCVBox2D rectangles. I'm looking for any way to attach physic to my generated shape - for example made circle bounce on ...
1
vote
2answers
28 views

XNA Update methods from other classes

I want to create a simple game where my character can walk, jump, shoot. But I got stuck on how to call the update method from another class? At the moment all of my code is in Game.cs (the main ...
1
vote
1answer
31 views

XNA - How to dim a section of the screen?

How would you dim an image(or a section of the screen) so that you can show something else that's not dimmed as the focus? Sorry that it's a little vague and hard to understand, but I can't think of a ...
0
votes
2answers
18 views

OpenCV: How to get corners of CvBox2D?

I need to find corner positions of CvBox2D (or MCvBox2D) to map found contours on game object in XNA. I have a problem with correct translation of rotation angle. I thought that this is kind of basic ...
0
votes
2answers
24 views

Xna 4.0 Shooting using angle

Sitting and making a 2d shooting game where my player needs to be able to shoot up left and up right using angles. The problem i have is i cant find a way to make this work. So how do o calculate ...
-4
votes
2answers
40 views

Get image snapshot of the perspective projection of a 3D model [closed]

I have a 3D models in .fbx format. I need to add programmatically(.net, c#) an image(texture) to this model and get snapshot(image) of the result to display it on the website. I'm going to use XNA or ...
0
votes
1answer
28 views

NullReferenceException Error in Pipeline.Conte

I use the code from the "XNA 3D Primer", by M.C. Neel from Wrox. I have a problem with the code for "Chapter 8", page 31. I have the variable robotAni where robotAni is declared of type ...
1
vote
1answer
31 views

XNA - Newly Installed Font not working?

So recently I installed a new font (.ttf) to my computer so that I can utilize it in my XNA game. It is the proper type of font, and I am spelling it correctly, but XNA cannot find it. Any ideas on ...
-2
votes
1answer
32 views

3D map from text file [closed]

How would I create a 3d map from an imported text file? The text looks like this 1,1,1,1,1 1,1,1,1,1 1,1,1,1,1 1,1,1,1,1 1,1,1,1,1 This will create 25 cubes 1 cube high. My ...
2
votes
1answer
26 views

XNA - How to change orientation of Drawing a List of Strings

How do you Draw a list of strings with a spritebatch so that it looks like this; Item1 Item2 Item3 Item4 Instead of Item 1 Item 2 Item 3 Item 4 or instead of: Item1 Item2 Item3 Item4
-4
votes
1answer
24 views

XNA - Any Good Tutorials on 3D? [closed]

Are there any good XNA 3D and 3D animation tutorials? If so please post a link for me. Thanks. Since someone pointed out how it's vague and will give a lot of possible useless answers, I'll expand on ...
1
vote
1answer
21 views

Lack of access to XNA ContentManager from another project

i have a bit complicated problem and cause i'm out of ideas i'm here again. I work on app to generate shots from any 3d engine and i (unfortunately) suggested XNA to achieve this, as we wanted to ...
0
votes
1answer
20 views

Making A Gradient Between 2 Colors in XNA

I am making a GUI library for Monogame/XNA, and I decided that instead of using textures for the buttons, I would use a struct to hold information on gradients and colors in the gradient. Then I could ...
0
votes
0answers
14 views

Gravity system with collision

I'm trying to implement a gravity system for a game I'm making but I'm having some problems with it. I built a scene where i have the floor and a big hole. The initial position of my character is ...
2
votes
1answer
27 views

.net Serialization: How to use raw binary writer while maintaining which thing is which

I'm making a roguelike game in XNA with procedurally generated levels. It takes about a second to generate a whole new level but takes about 4 seconds to serialize it and about 8 seconds to ...
-3
votes
0answers
39 views

C# XNA: collisions don't work [closed]

I've tried to make collisions for my first XNA Game, but it don't work - player can pass trough blocks. I was reading all XNA tutorials, but still I don't know how do I fix it. Could you help me? I'm ...
0
votes
0answers
29 views

switch(…) in Update() or constructor?

I'm trying to make my first real game in XNA... I've made an Abilities class which keeps track of different abilities a monster or item can have... I also made an enumeration of all the kinds of ...
1
vote
2answers
36 views

XNA - How to Exit Game from class other than main?

How do you make it so the game can exit but not have the code in the main class, have it in a different class?
0
votes
1answer
21 views

Lines not behaving as they should

I am making a small program to simulate somekind piece of string, and I want it so that I can move middle parts of the string and the other parts move with it, I made the string out of segments of ...
1
vote
2answers
42 views
+50

How do I pause the redraw in XNA?

I made an XNA image viewer, but it always redraws the scene, even if it's not changing, and it's making my netbook burn like hell, so I'd like it to pause drawing when nothing's changing. Reducing ...
0
votes
1answer
29 views

XNA - Drawing Strings on Menus

Two questions on Drawing a list of Strings on XNA in menus. First is how do you left align the text instead of center align it? Second is how do you show a say a line before whichever one is selected? ...
0
votes
1answer
44 views

How to use noise to generate varied terrain biome style

I'm currently using value noise I believe it is called in combination with fractal Brownian motion to generate terrain in a 3D environment. I generate a 2D height-map from the noise, with values ...
1
vote
0answers
45 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() { ...
0
votes
2answers
26 views

XNA - Freezing Menu Error

When I click the down arrow it gets stuck on the second selection and up or down no longer work, how would I fix that? Second Question: How to prevent freezing when changing menu items? When I change ...
2
votes
2answers
40 views

reusing xna primitives via class

Is there any way to make a primitive and use it over and over again? ex: if I make one cube, can I create 100 and make a 10x10 grid? I've tried using a for loop and updating the x and z coords with ...
-3
votes
0answers
49 views

XNA - Questions & Answer (Menus) [closed]

Questions and Answers for help needed with XNA & C#. First Question: How to create | (Selected Menu Item) | and when not selected just plain (Menu Item)? Second Question: How to prevent ...
1
vote
2answers
21 views

how do I generate a bitmap from a model using using XNA?

I wish to dynamically create an image (as a Texture2D) from a camera view of a 3D model using XNA-4.0. I can set up a model and camera to get the view I desire, but because I will need to ...
-2
votes
1answer
50 views

Q: How to make a Deck in Xna

Ok I want to make a game a card game and I was thinking to make the cards as a int so I can make the game rules with if ifelse and else condition's but I don't know how to take and int and put texture ...
-2
votes
0answers
11 views

XNA 4.0 Racing game kit “Error initializing Games for Windows - LIVE” [closed]

i download the racing game kit starter demo from the github page. its optimized for xna 4. im running VS2010 on wp7 sp1. the game compiled properly but at launch the screen is dark and i get a debug ...
1
vote
1answer
31 views

C# / XNA - Bounding Circle Collision (Micro) Optimization?

I've been working on a simple space shooter, and have gotten to the point in the project where my terribly written code is actually slowing things down. After running EQATEC, I can see that the ...
1
vote
1answer
26 views

Create texture from 3D Model

I'm working on a project and I placed a 3D model on my screen with a transparent background. Now my question is, is it possible to extract a texture (backbuffer) from the model itself and not the ...
0
votes
2answers
14 views

When changing state can I re-initialize my code?

So basically I've got a game that runs with 4 game states. One for the main menu and 3 for my mini-games. Within each of these mini games there are smaller states to handle various sections of the ...
0
votes
1answer
16 views

XNA mouse position is largely offset from ACTUAL position

I have here some simple code for getting the mouse position and drawing it: class Pointer { MouseState currPointerState; Vector2 currPointerPos; public Pointer() { } ...
0
votes
1answer
39 views

Serialize Song class

I have a list of Songs. I need to store this list for loading at a later date but since there's no built in unique ID I'm just using a KeyValuePair that stores the track title and artist. This should ...
0
votes
0answers
30 views

xna, .net, c#, saving/serializing : Folder structure. Does this plan make sense?

I'm just tackling serializing / deserializing for my XNA game. Its a roguelike with procedurally generated levels. I'm using a binary serializer. My plan is to use have a SAVES folder with a folder ...
1
vote
1answer
39 views

Farseer physics mass/weight issue

I have created a platformer game using farseer physics with a player and some objects etc but are having some problem with mass on objects. The player is composed by a wheel and a torso connected ...

1 2 3 4 5 92