I am making a Doom like game and cannot find an easy way to get 8 driection movement to work based on angle
Develop games in your browser. Powerful, performant & highly capable.
Not sure what you mean. But if you want to move an object with 8direction at a certain angle, you can use vectors.
Variable a=20 // angle Variable s=100 // speed On every tick: Player Set Vector X to cos(a)*s Player Set Vector Y to sin(a)*s