UNPKG

@phaserjs/phaser

Version:
6 lines (5 loc) 265 B
import { HIERARCHY, HierarchyComponent } from "./HierarchyComponent"; export function DecreaseNumChildren(parentID, total = 1) { const data = HierarchyComponent.data[parentID]; data[HIERARCHY.NUM_CHILDREN] = Math.max(0, data[HIERARCHY.NUM_CHILDREN] - total); }