Skip to content

Scanner

Antarka edited this page Jul 29, 2016 · 3 revisions

Scanner

The scanner can retrieve and store a set of actors sorting by prefix which allows a set of actions on specific groups.

Example

const Scanner : United.Scanner = new United.Scanner(this.actor,["UI_","TD_"]);
Scanner.forEach("UI_",(actor: Sup.Actor) => {
    Sup.log(actor.getName());
});

Methods

Permet de scanner un nouveau container tout en ajoutant/créant des préfixs.

scan(container: Sup.Actor, prefix: string[]): void

Retourne un objet d'acteurs en passant le prefix du groupe en argument.

get(group: string): { [key: string]: Sup.Actor } | boolean

On récupère tout les acteurs d'un groupe dans une boucle avec un callback.

forEach(group: string, callback: (actor: Sup.Actor) => void): boolean

Mettre à jour les groupes de préfix. (Obsolète)

update(group: string[]): void
Clone this wiki locally