Deltarune (Chapter 4) script viewer

← back to main script listing

gml_Object_obj_titan_ichor_Step_0

(view raw script w/o annotations or w/e)
1
if (con == 0)
2
{
3
    radius++;
4
    if (radius >= max_radius)
5
    {
6
        radius = max_radius;
7
        con = 1;
8
    }
9
}
10
else if (con == 1)
11
{
12
    radius--;
13
    if ((radius + siner + rim) <= 0)
14
        instance_destroy();
15
}
16
siner++;