thpj5/objects/obj_ending/Step_0.gml

16 lines
225 B
Plaintext

counter++;
if (counter > 120) {
alpha_cycle = (300 - counter) / 120;
} else {
alpha_cycle = counter / 120;
}
if ( counter >= countermax ) {
room_goto(rm_title);
}
if ( scr_input_get( INPUT_PAUSE ) ) {
// game_end();
}