Not content with his role as the undoubtedly nicest and mostest politest of all XNA MVPs, George has started what looks to be a weekly roundup of news from the XNA community:
- XNA Notes 001
- XNA Notes 002
- XNA Notes 003 Will he keep doing it? Is this something you should bookmark? I hope…
A while ago I wrote about how to use SpriteBatch with a custom vertex shader, but didn't go into detail about how to set up matrices for drawing sprites in 3D.
The fundamentals are simple:
The fundamentals are simple:
- SpriteBatch generates vertex data containing Vector3 positions (plus texture coordinates and tint colors)…
Nelxon Studio has a nice article about XNA version upgrade: http://www.nelxon.com/blog/xna-3-1-to-xna-4-0-cheatsheet/
Source
Source
Regardless of whether you are developing for PC, Xbox 360, or Windows Phone, your game will most likely be viewed on some kind of LCD screen. An important characteristic of LCD technology is the response time, which measures how long pixels take to change color from black to white and then back to …
The simple answer is that the file you are trying to load must not actually exist in the location you are trying to load it from!
And yet people sometimes get stuck on this error, unable to open their file and with no idea how to figure out why this is failing. I suspect this is a side effect of t…
And yet people sometimes get stuck on this error, unable to open their file and with no idea how to figure out why this is failing. I suspect this is a side effect of t…
I have no idea how they managed to find time to do this at the same time as finishing up XNA Game Studio 4.0, but my colleagues Tom and Dean have written a most excellent book with the pithy title XNA Game Studio 4.0 Programming: Developing for Windows Phone and Xbox Live. Now in stock at Amazon, s…
You want to implement save games.
You've decided to do this using isolated storage (perhaps because you are targeting Windows Phone, or because you want something simpler than the Xbox StorageContainer APIs).
But since XNA is so awesomely portable, you are also making a Windows version of your …
You've decided to do this using isolated storage (perhaps because you are targeting Windows Phone, or because you want something simpler than the Xbox StorageContainer APIs).
But since XNA is so awesomely portable, you are also making a Windows version of your …
WinForms and XNA have quite different ideas about how a program should run.
XNA assumes that games are always in motion, moving and animating. It constantly cycles around the game loop, calling your Update and Draw methods. This is convenient for most games, but wasteful if the program reaches a s…
XNA assumes that games are always in motion, moving and animating. It constantly cycles around the game loop, calling your Update and Draw methods. This is convenient for most games, but wasteful if the program reaches a s…
You are making a WinForms app. All is going well, until one day your custom control disappears. In its place you just see a big red cross:
What gives?
Let us back up to remind ourselves how exceptions work:
What gives?
Let us back up to remind ourselves how exceptions work:
- If your code does something wrong (such as dereferencing a null object or passi…
Advertisement
Popular Blogs
Advertisement