1 decade ago by wands
If this is happening, what is the correct way to offset the position of the bullet when spawning the bullet entity?
Can anyone show an example?
Can anyone show an example?
This forum is read only and just serves as an archive. If you have any questions, please post them on github.com/phoboslab/impact
newX = oldX * Math.cos(angle) - oldY * Math.sin(angle); newY = oldX * Math.sin(angle) + oldY * Math.cos(angle);