Tagged Questions
1
vote
0answers
77 views
Collision detection code style [closed]
Not only there are two useful broad-phase algorithms and a lot of useful narrowphase algorithms, there are also multiple code styles.
Arrays vs. calling
Make an array of broadphase checks, then ...
3
votes
4answers
2k views
Multiple Key Presses in XNA?
I'm actually trying to do something fairly simple.
I cannot get multiple key presses to work in XNA. I've tried the following pieces of code.
else if (keyboardState.IsKeyDown(Keys.Down) && ...