So, how can I get the angular direction from my player (PlayerImage), to anothe Sprite (DirectionSprite)?
Develop games in your browser. Powerful, performant & highly capable.
use the angle expression:
angle(PlayerImage.x,PlayerImage.y,DirectionSprite.x,DirectionSprite.y)
Thanks!