UNPKG

@phaserjs/phaser

Version:
11 lines (10 loc) 232 B
export function GetParents(child) { const parents = []; let currentParent; while (child.hasParent()) { currentParent = child.getParent(); parents.push(currentParent); child = currentParent; } return parents; }