thsj2022/objects/obj_yukkuri_marisa/Step_1.gml

16 lines
187 B
Plaintext
Raw Normal View History

2022-08-22 23:53:47 -07:00
blast--;
if (!blast) {
change_timer--;
}
if (blast) {
dspeed--;
}
if (change_timer <= 0) {
change_timer = 50 + random(150);
dspeed = 0.1 + random(0.5);
direction = random(360);
}