get(tag: Tag | Tag[], opts?: GetOpt): GameObj[]

Get a list of all game objs with certain tag.

paramtag- The tag to search for. Use "*" to get all objects.

paramopts- Additional options.

// get a list of all game objs with tag "bomb"
const allBombs = get("bomb");

// To get all objects use "*"
const allObjs = get("*");

// Recursively get all children and descendents
const allObjs = get("*", { recursive: true });

returnsA list of game objects that have the tag.

sincev2000.0

kaplay logo

Misc

Layer