Move an object in a direction

15.2k Views Asked by At

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;
1

There are 1 best solutions below

2
On BEST ANSWER

Use builtin GM-functions (this code must be placed in the end step event of the enemy object):

angle = point_direction(x, y, player_obj.x, player_obj.y);
x += lengthdir_x(moveSpeed, angle);
y += lengthdir_y(moveSpeed, angle);

or:

direction = point_direction(x, y, player_obj.x, player_obj.y);
if point_distance(x, y, player_obj.x, player_obj.y) > 10 // min distance
{
    speed = moveSpeed;
}

Or you can use motion planning functions, like mp_potential_step or mp_grid_... for A*.

P.S. When you use code like this

angle = arctan2(enemy_obj.x - player_obj.x, enemy_obj.y - player_obj.y);

you must understand that if are several instances of enemy_obj then will be taken only very first of them (with the smallest id)