Deltarune (Chapter 2) script viewer

← back to main script listing

gml_Object_obj_queenartfire_Step_0

(view raw script w/o annotations or w/e)
1
image_xscale += growamt;
2
image_yscale += growamt;
3
image_alpha -= fadespeed;
4
if (image_alpha < 0.6 && fadespeed > 0)
5
    active = 0;
6
if (image_alpha <= 0 && fadespeed > 0)
7
    instance_destroy();
8
if (hit == 1)
9
{
10
    active = 0;
11
    image_alpha *= 0.8;
12
}
13
image_angle = direction + 90;