make enemy attract towards player python code example
Example: make object move towards player p5js
this.rotation = atan2(player.y - this.y, player.x - this.y);
this.speed = 2.5;
this.x += cos(this.rotation) * this.speed;
this.y += sin(this.rotation) * this.speed;