sunflowers-in-the-rain/objects/obj_marisa_missile/Step_0.gml

15 lines
232 B
Plaintext
Raw Normal View History

2022-06-30 22:16:34 -07:00
image_angle = direction;
lifetime -= 1;
if ( lifetime <= 0 ) {
instance_destroy();
}
target_delay--;
if (target_delay <= 0) {
if (instance_exists( target )) {
move_towards_point(target.x, target.y, SHOT_MISSILE_SPEED);
}
}