Undertale Yellow script viewer

← back to main script listing

gml_Object_obj_flowey_battle_gray_cross_bomb_explosion_Step_0

(view raw script w/o annotations or w/e)
1
switch (scene)
2
{
3
    case 0:
4
        if (image_yscale > 0)
5
        {
6
            image_yscale -= 0.2;
7
        }
8
        else
9
        {
10
            image_yscale = 0;
11
            instance_destroy();
12
        }
13
        image_alpha = image_yscale * 1.1;
14
        break;
15
}