Deltarune (Chapter 2) script viewer

← back to main script listing

gml_Object_obj_sneo_crusher_nohead_Other_10

(view raw script w/o annotations or w/e)
1
if (bulletid.big == 1)
2
{
3
    if (hspeed < 10)
4
        hspeed = 10;
5
    vspeed += random_range(3, -3);
6
}
7
if (bulletid.big == 0)
8
{
9
    if (hspeed < 0)
10
        hspeed = 0;
11
    hspeed += 2;
12
    vspeed *= 1.2;
13
}
14
with (bulletid)
15
    instance_destroy();