14 lines
243 B
Plaintext
14 lines
243 B
Plaintext
/// @description Once a Second
|
|
|
|
room_time += 1;
|
|
|
|
|
|
minutes = floor(room_time / 60);
|
|
var seconds = room_time % 60;
|
|
clock = string_fix(minutes,2) + ":" + string_fix(seconds,2);
|
|
|
|
|
|
|
|
spawn_speed += 0.02;
|
|
alarm[11] = room_speed; // Every Second tick
|