-
Notifications
You must be signed in to change notification settings - Fork 0
Scanner
Gentilhomme edited this page Jul 3, 2016
·
3 revisions
The scanner can retrieve and store a set of actors sorting by prefix which allows a set of actions on specific groups.
const Scanner = new United.Scanner(this.actor,["UI_","TD_"]);
Scanner.forEach("UI_",(actor: Sup.Actor) => {
Sup.log(actor.getName());
});
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
Contributor :
- Fraxken
- Purexo