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

10 lines
132 B
Plaintext
Raw Normal View History

2022-06-23 01:47:13 -07:00
image_index = (direction + 22.5) / 45;
if (direction + 22.5 >= 360 ) {
image_index = 0;
}
2022-06-30 22:16:34 -07:00
if (hp <= 0) {
instance_destroy();
}