How to do a multishot in xna?
- by DeVonte
I am trying to simulate a gun in which shoots multiple bullets at the same time(similar to a spread out shot). I am thinking I have to create another bullet array then do the same as I have below but in a different direction.
Here is what I have so far:
foreach (GameObject bullet in bullets)
{
// Find a bullet that isn't alive
…