I have to work in Game Maker for this project and I want to move a object towards another object. This is what I have got so far. Does anyone know what I am doing wrong? The enemy is now spinning around the player.
draw_sprite(sprite_index,image_index,x,y);
moveSpeed = 1;
angle = arctan2(enemy_obj.x - player_obj.x, enemy_obj.y - player_obj.y);
enemy_obj.x += cos(angle) * moveSpeed;
enemy_obj.y -= sin(angle) * moveSpeed;
Use builtin GM-functions (this code must be placed in the
end step
event of the enemy object):or:
Or you can use motion planning functions, like
mp_potential_step
ormp_grid_...
for A*.P.S. When you use code like this
you must understand that if are several instances of
enemy_obj
then will be taken only very first of them (with the smallest id)