destroyAll(tag: Tag): void

Remove all game objs with certain tag.

paramtag- The tag to search for.

// destroy all objects with tag "bomb" when you click one
onClick("bomb", () => {
    destroyAll("bomb");
});
kaplay logo

Misc

Layer