Deltarune (Chapter 5) script viewer

← back to main script listing

gml_Object_obj_dashbar_part_Step_0

(view raw script w/o annotations or w/e)
1
if (act == 0)
2
{
3
    timer -= 1;
4
    if (timer < 0)
5
        image_alpha *= 0.25;
6
    if (timer < -30)
7
        instance_destroy();
8
    image_angle += (spin_dir * abs(speed));
9
}