touhou-pride-jam-2021/thpj3/objects/obj_title_moon/Step_0.gml

12 lines
216 B
Plaintext
Raw Permalink Normal View History

if (counter <= 120) {
counter++;
y--;
}
if (counter == 120) {
if (title_created == 0) {
instance_create_layer(200, 0, "title", obj_title_title);
title_created = 1;
}
}
image_alpha = counter / 100;