|
2d |
awarded | Yearling |
|
Apr 25 |
awarded | Popular Question |
|
Jan 24 |
awarded | Popular Question |
|
Jan 24 |
asked | Optimizing models & improving performance |
|
Jan 22 |
awarded | Popular Question |
|
Jan 15 |
comment |
What's an effective way to manage special effects? So are you saying that you draw special effects with their associated object? |
|
Jan 15 |
revised |
What's an effective way to manage special effects? edited tags |
|
Jan 15 |
comment |
At this point in time, avoid XNA? Compare XNA forums to gamedev.net The only reason you see so many XNA questions here is (no offense) because if people want a fast OpenGL or DirectX answer, they go to StackOverflow. |
|
Jan 15 |
answered | At this point in time, avoid XNA? |
|
Jul 19 |
comment |
How do I make more bullets shoot in this game code? oh sorry, that was meant to be : var tempBullets = bullets.slice(); And sorry, that was my C# invading regarding the array... Try replacing that with : var bullets = new Array(); instead of 'new List<Bullet>()' And i think i might have used bullets.add(), change that to bullets.push() |
|
Jul 18 |
comment |
How do I make more bullets shoot in this game code? So the first part of my answer remains, try using lists instead of a single variable. And let the code be there for reference of how i would approach it (it may have bugs, but you should get the idea) |
|
Jul 18 |
comment |
How do I make more bullets shoot in this game code? I already did. I just have an awful lot of time on my hands, and when you have the gift of patience :P Well i may as well use it. Though i must confess, Henry, it's approaching the stage where i think you try thinking more deeply about how you can approach the problem then start asking more detailed questions. |
|
Jul 18 |
comment |
How do I make more bullets shoot in this game code? How so? Don't just run through the code... Read through it, get the idea of what i'm trying to do, maybe you could find the problem (if not, tell us more details on the problem. Are you getting error messages?). |
|
Jul 18 |
revised |
How do I make more bullets shoot in this game code? added 9614 characters in body |
|
Jul 18 |
comment |
How do I make more bullets shoot in this game code? (Actually... list instead of array).. I'll edit my answer |
|
Jul 18 |
comment |
How do I make more bullets shoot in this game code? kirupa.com/html5/arrays_javascript.htm#.UAZpLfUZhj4 Try reading that |
|
Jul 18 |
answered | How do I make more bullets shoot in this game code? |
|
Jul 18 |
comment |
How can I simulate limited AI vocabulary for a word game? you could let it learn! Every time the player uses a word it doesn't "know", it could have a 6/10 chance of learning it, otherwise it learns a new random word! (Thus it usually will be learning words the player knows, yet slowly bringing out words the player might not (education!!)) Of course, this would mean you'd need a "AI dictionary" for every player. |
|
Jul 18 |
answered | What is server mod? |
|
Jul 18 |
accepted | Missing triangles in model |