Reddit Reddit reviews XNA 4.0 Game Development by Example: Beginners Guide

We found 10 Reddit comments about XNA 4.0 Game Development by Example: Beginners Guide. Here are the top ones, ranked by their Reddit score.

Computers & Technology
Computer & Video Game Strategy Guides
Books
Computer & Internet Game Strategy Guides
XNA 4.0 Game Development by Example: Beginners Guide
Check price on Amazon

10 Reddit comments about XNA 4.0 Game Development by Example: Beginners Guide:

u/petabyte · 20 pointsr/learnprogramming

Try these sites:
Riemers,
XNAResources,
RBWhitaker.
As for books I've found this one to be the most helpful.

u/tcgeralt · 5 pointsr/gamedev

This is not Unity, but it is C#. In my opinion, it is one of the better XNA books out there. XNA 4.0 Game Development by Example: Beginner's Guide by Kurt Jaegers

u/joeswindell · 5 pointsr/gamedev

I'll start off with some titles that might not be so apparent:

Unexpected Fundamentals

These 2 books provide much needed information about making reusable patterns and objects. These are life saving things! They are not language dependent. You need to know how to do these patterns, and it shouldn't be too hard to figure out how to implement them in your chosen language.

u/[deleted] · 3 pointsr/gamedev

I personally just recently started learning C# after using GameMaker for some years. It's actually been a bit easier to understand than I thought (it may be because I have past experience with the GML and DarkBASIC languages).

Java is also very similar to C# and is more portable as it is directly supported by millions of devices, where as with C# you need something like Mono to port games to other operating systems or devices.

I have no experience with C++, but from what I've heard it is probably one of the (if not the) most powerful language available, but I've also heard that it is harder to learn than other languages.

The reason I personally went with C# is because it's (generally) easier to learn than Java from what I've heard, and I don't really mind the non-portability, and also a switch from C# to Java is easy because their syntax is pretty much identical.
Also, here's the C# book I'm currently using

http://www.amazon.com/XNA-4-0-Game-Development-Example/dp/1849690669

I can't really recommend any books for other languages because I haven't read any.

Hope this helped :)

u/Tr1poD · 3 pointsr/gamedev

This is probably the most comprehensive and complete tutorial on making a platformer that you will find but you will need to pay a subscription to watch. Check out the first video anyway and you might get an idea if its worth while.

This book has a pretty decent platformer tutorial as well. Also goes through making a tile based editor for your levels.

u/AmericanXer0 · 3 pointsr/gamedev

I second the recommendation for XNA 4.0: Game Development by Example. It helped me out greatly and keeps things fresh by having the reader build multiple mini games, instead of one larger game.

u/unwary · 2 pointsr/gamedev

XNA 4.0 Game Development by Example - One such example in the book takes you step by step in making a scrolling 2d tank shooting game.

It's in C# using (obviously) the XNA framework, so it's real easy to pick up.

u/BloodyThorn · 1 pointr/learnprogramming

This one for basic C# and OOP.

Beginning Visual C# 2010

O'Reilly has great reference books.

C# 4.0 in a Nutshell: The Definitive Reference

From there you can learn Mono for Android (and iOS)

Professional Android Programming with Mono for Android and .NET/C#

While learning XNA game development by example,

XNA 4.0 Game Development by Example: Beginner's Guide

And by detail...

Learning XNA 4.0: Game Development for the PC, Xbox 360, and Windows Phone 7

u/jojotdfb · 1 pointr/KotakuInAction

They're receiving updates to implement what XNA already has (plus a little extra). Books like this exist for XNA and the knowledge is 95% transferable to Monogame. Beginning out, books like these help a lot and will help drive success.