Deltarune script viewer

← back to main script listing

gml_Object_obj_fieldmuslogo_Step_0

(view raw script w/o annotations or w/e)
1
siner += 1;
2
if (siner <= 30)
3
{
4
    offx += (2 - (siner / 15));
5
    if (image_alpha < 1)
6
        image_alpha += 0.05;
7
}
8
if (siner >= 120)
9
{
10
    offx += (-8 + (siner / 15));
11
    image_alpha -= (1/30);
12
    if (image_alpha <= 0)
13
        instance_destroy();
14
}