UNPKG

@phaserjs/phaser

Version:
11 lines (10 loc) 259 B
import { GetNextSiblingID } from "./GetNextSiblingID"; export function GetSiblingIDs(childID) { let next = GetNextSiblingID(childID); const output = []; while (next > 0) { output.push(next); next = GetNextSiblingID(next); } return output; }