Undertale script viewer
← back to main script listing
gml_Object_obj_stagecloud_Step_0
(view raw script w/o annotations or w/e)
1 |
image_alpha += 0.03; |
2 |
timer += 1; |
3 |
if (timer > 30) |
4 |
{ |
5 |
image_alpha -= 0.07; |
6 |
if (image_alpha < 0.1) |
7 |
instance_destroy(); |
8 |
} |