so_many_mars/objects/oGame/Alarm_0.gml
Tyrel Souza 8854b848bc init
2022-02-21 18:45:19 -05:00

9 lines
235 B
Plaintext

/// @description Alarm controlling MONSTER spawning.
with oCamera {
var target = get_coord_outside_viewport(x, y);
var inst = instance_create_layer(target[0], target[1], "Instances", oEnemy);
}
alarm[0] = room_speed / spawn_speed;