Undertale script viewer
← back to main script listing
gml_Object_obj_dogboat_pillar_Step_0
(view raw script w/o annotations or w/e)
|
1
|
timer += 1;
|
|
2
|
if (timer < 5)
|
|
3
|
{
|
|
4
|
if (image_yscale < 1)
|
|
5
|
image_yscale += 0.25;
|
|
6
|
if (image_alpha < 1)
|
|
7
|
image_alpha += 0.15;
|
|
8
|
}
|
|
9
|
if (timer > 6)
|
|
10
|
{
|
|
11
|
image_yscale -= 0.25;
|
|
12
|
image_alpha -= 0.2;
|
|
13
|
}
|
|
14
|
if (timer > 9)
|
|
15
|
instance_destroy();
|