thj7/objects/obj_disclaimer/Step_0.gml

13 lines
165 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();
}
2024-02-04 21:09:56 -08:00