views:

472

answers:

6
+2  Q: 

XNA game tutorial

I have been coding for a while in C# and want to learn XNA game development, I have googled around but unable to find a good tutorial. Can someone provide link to some tutorial that can teach me from the begining.

A: 

Visit the XNA Creators Club website: http://creators.xna.com/. There are loads of good tutorials. Googling around should have helped!!

batbrat
+4  A: 

Microsoft offers a lot for this, you could start with:

And don't forget the complete XNA Creator's Club online:

MysticEarth
A: 

There's an introduction tutorial on CodeProject here about XNA games, there is also a step-by-step version of Space Invaders using XNA also on CodeProject. Here is also a car simulator on CodeProject also. Do a search there using the keyword 'XNA' and you will be very surprised! :)

Hope this helps, Best regards, Tom.

tommieb75
A: 

I would recommend Riemers tutorials, along with others already recommended.

http://www.riemers.net/

Crappy Coding Guy
A: 

I second the recommendation to Riemers tutorials. I would also like to add a helpful debugging library to the list. XNA Debug Terminal is an open source library you can setup in seconds that allows you to see the value of any variable, invoke any method, watch values changing in real-time, and more by simply typing c# code into a terminal-like display that appears atop your game window. Unlike the normal Visual Studio debugger, you can invoke arbitrary code while your game is running. You can find out more about this at http://www.protohacks.net/xna_debug_terminal . This will greatly help you to avoid a lot of frustration while learning XNA.

xnaterm