ID:166363
 
Is there a way get the direction from the player to where the mouse is clicked? Like if you click directly north of the player, is there a way to get NORTH out of that? What I want this for is for an arrow system. I want it so the player can click, and an arrow will fly in that direction until it gets deleted (1 second) or hits something.
You can use get_dir() for that, however, it is not accurate, and it will always spit out non-cardinal directions (ie. northwest, southeast) if the direction isn't cardinal.

~~> Unknown Person