Null_Reference_Exception

less info
316 reputation
113
bio website Idonothaveone
location United States
age 15
visits member for 4 months
seen 13 hours ago
stats profile views 81

I am a young programmer, and i program XNA games in C#.


May
14
comment Can I make a downloadable .exe app for my game if I make it in HTML5?
There may be some information here: stackoverflow.com/questions/9504651/…
May
12
comment How do I animate images with OpenGL?
Have You Checked Out Spritesheets? They Look Something Like This fabiobiondi.com/blog/wp-content/uploads/2012/08/… , and you load that one image in and draw a differant frame of it every game frame.
May
1
revised How to prevent the player from clicking too fast
Removed Unnecesary indenting
May
1
suggested suggested edit on How to prevent the player from clicking too fast
Apr
26
comment XNA crash when publish
When You Publish A Game There Should Should Be Three Things Made: An Application Files Folder, A Setup.exe, And Your games.application file. All Of These Should Be In The Same Place When Running The Setup.exe, It Will Fail To Install, If This Is Not The Case It Is Probably The Exception You Didnt Call.
Apr
26
awarded  Citizen Patrol
Apr
24
accepted Is C++ necessary to learn if I ever want to get a job in the game industry?
Apr
23
comment Checking if I tapped in texture or not
What you tried?
Apr
16
comment C++ SDL/SFML advancing help
Whats stopping you from making more complex games? Pong has all the basics, like collision detection, key input, drawing sprites on the screen. If you know all of that you wont have much trouble making a slightly more complex games
Apr
14
comment XNA 4.0 3D Collision question
You should really tell us what you've tried and give more details of your situation.
Apr
13
awarded  Popular Question
Apr
5
suggested suggested edit on camera2d class will not work
Apr
4
comment Can I use a list to spawn enemies?
A simpler way of updating each enemy without calling each one is doing this: foreach(AI newAi in enemies) { newAi.Update(); }
Apr
3
awarded  Nice Question
Apr
3
awarded  Autobiographer
Apr
1
comment Develop a 2d isometric mobile game on Flash
If you'er serious about trying something else you could check out monogame.net You can write code (identical to XNA) and it'll run on windows, linux, macs, ios, android, windows phone. Almost anywhere with re-writing barely any code. You also dont need to program it on a Mac to target iOS.
Mar
31
asked Is C++ necessary to learn if I ever want to get a job in the game industry?
Mar
25
asked Set a 2d camera's position so that a building is under the players feet
Mar
23
awarded  Critic
Mar
19
answered How to handle mouse input in XNA?