Deltarune (Chapter 2) script viewer

← back to main script listing

gml_Object_obj_confetti_popper_Step_0

(view raw script w/o annotations or w/e)
1
for (i = 0; i < 15; i++)
2
{
3
    d = instance_create(x, y, obj_confetti_overworld);
4
    d.direction = random_range(direction - 20, direction + 20);
5
    d.height = height;
6
}
7
instance_destroy();