Dissecting the empty Windows Phone Direct3D App template
One thing that can be off-putting when migrating from XNA to Direct3D on Windows Phone 8 is the empty default project template. In XNA projects, an empty project simply contained the Game1.cs class,...
View ArticleA word on Matrices
Working on a sample regarding Orientation in a Direct3D app on Windows Phone 8, I came upon the need to clarify why I’m writing some math code in a specific way. Coming from XNA to C++/DirectX11 might...
View ArticleHandling Orientation in a Windows Phone 8 game
So you want to make a landscape game, or a game that supports both portrait and landscape mode in your Direct3D game for Windows Phone 8… I had quite a few requests for such a sample, and documentation...
View ArticleChickens Can’t Fly is in “Best of 2012″!
There’s a list of Best of 2012 with Xbox Games on Windows Phone up on Xbox.com, and I’m really happy to say that Chickens Can’t Fly is one of them! You can get the game from the Windows Phone Store here:
View ArticleDynamic 2D Shadows for Windows Phone 7
By request, here is the port of the old Dynamic 2D Shadows sample to XNA 4.0, on Windows Phone 7. Download Dynamic 2D Shadows There may be performance improvements that could be done. I just took the...
View ArticlePorting Chickens Can’t Fly to iOS and Android
So, we finally managed to port Chickens Can’t Fly to iOS and Android. The long delay was caused mostly by an exclusivity agreement, but that’s past now, and we can try to explore new markets. This...
View ArticleConverting textures to .dds
As I wrote in my previous post, Windows Phone 8 does not support WIC components, which means that unless you want to write a .png loader manually, you need to have your textures in .dds format. Which...
View ArticlePostprocessing effects on WP7, Part II
For the first part of this mini-series, please read: Postprocessing effects on WP7, Part I Starting from where we left of, this part will be focused on a single effect: random noise. Random Noise My...
View ArticlePostprocessing effects on WP7, Part III
Previous parts in this mini-series: Postprocessing effects on WP7, Part I Postprocessing effects on WP7, Part II In this third and final part of this series of samples related to postprocessing on WP7,...
View ArticleGetting Started with Direct3D on Windows Phone 8
One of my favorite things about XNA was the ability to just start Visual Studio, create a new project, and start adding game code. My purpose in the next few blog posts will be to try and make 2D game...
View Article