Deltarune script viewer

← back to main script listing

gml_Object_o_miniwheel_Step_0

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