Deltarune (Chapter 2) script viewer

← back to main script listing

gml_Object_obj_sneo_tiny_susie_axe_Collision_obj_sneo_wallbullet

(view raw script w/o annotations or w/e)
1
if (other.active == 0)
2
    exit;
3
if (other.destroyable == 1)
4
{
5
    instance_destroy();
6
    snd_play(snd_damage);
7
    with (other)
8
        instance_destroy();
9
}