UNPKG

gibbon.js

Version:

Actor/Component system for use with pixi.js.

8 lines 227 B
/** * Move clip to the top of its parent's display list. * @param clip */ export const moveTop = (clip) => { clip.parent?.setChildIndex(clip, clip.parent.children.length - 1); }; //# sourceMappingURL=display-utils.js.map