thsj2022/objects/obj_disclaimer/Step_0.gml

16 lines
220 B
Plaintext
Raw Permalink Normal View History

counter++;
if (counter > 180) {
alpha_cycle = (210 - counter) / 30;
} else {
alpha_cycle = counter / 30;
}
if ( counter >= countermax ) {
room_goto_next();
}
if ( scr_input_get( INPUT_PAUSE ) ) {
// game_end();
}