Deltarune (Chapter 4) script viewer

← back to main script listing

gml_Object_obj_gerson_growtangle_telegraph_Step_0

(view raw script w/o annotations or w/e)
1
if (con == 0)
2
{
3
    image_alpha += 0.2;
4
    if (image_alpha == 1)
5
        con = 1;
6
}
7
else
8
{
9
    image_alpha -= 0.2;
10
    if (image_alpha < 0)
11
        instance_destroy();
12
}
13
if (global.turntimer < 1)
14
    instance_destroy();