I am trying to make a game, but am stuck on something that should be a simple calculation. Based on the relative location of the player from the enemy, how am I supposed to get the enemy to shoot his bullets at a constant speed, regardless of direction and distance from the player?
I can get the enemy to shoot directly at the player, but the closer the player is to the enemy, that slower his bullets go. As such, the farther away the player is from the enemy, that faster the enemies bullets travel.
I've also tried converting the slope of the line between the player and enemy into radians and using the sine and cosine as the change in X and Y for when the bullets update, but the Y value becomes miniscule, so the bullets will only move right on the X axis, and very slightly up on the Y axis.
Help?