sunflowers-in-the-rain/objects/obj_wriggle_butterfly/Step_2.gml

14 lines
250 B
Plaintext
Raw Permalink Normal View History

2022-06-30 22:16:34 -07:00
if (direction < point_direction(x, y, obj_marisa.x, obj_marisa.y)) {
direction += 1;
} else {
if (direction > point_direction(x, y, obj_marisa.x, obj_marisa.y) + 180) {
direction += 1;
} else {
direction -= 1;
}
}
image_angle = direction;