Undertale script viewer

← back to main script listing

gml_Object_blt_splinter_Step_0

(view raw script w/o annotations or w/e)
1
if (flush == 1 && image_alpha < 1)
2
    image_alpha += 0.1;
3
if (flush == 1 && image_alpha >= 1)
4
{
5
    flush = 2;
6
    image_alpha = 1;
7
}
8
if (iteration > 0 && flush == 0)
9
{
10
    flush = 1;
11
    image_alpha = 0;
12
}
13
if (iend == iteration)
14
    instance_destroy();