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

9 lines
150 B
Plaintext
Raw Permalink Normal View History

2022-06-30 22:16:34 -07:00
timer--;
if (timer % 5 == 0) {
instance_create_layer( x, y, "lyr_ground", obj_yuuka_shadow_afterimage );
}
if (timer <= 0) {
instance_destroy();
}
2022-06-30 22:16:34 -07:00