Deltarune (Chapter 2) script viewer

← back to main script listing

gml_Object_obj_icespell_hexagon_Step_0

(view raw script w/o annotations or w/e)
1
if (con == 1)
2
{
3
    image_angle += (rotspeed * 2);
4
    direction += (rotspeed * 3);
5
    timer++;
6
    if (timer >= 10)
7
        image_alpha -= 0.1;
8
    if (image_alpha <= 0)
9
        instance_destroy();
10
}