1 2 3 4 5 6 7 8 9 10 11 12 13 let nextUid = 0; /** * Gets the next unique identifier * @memberof PIXI.utils * @function uid * @returns {number} The next unique identifier to use. */ export function uid(): number { return ++nextUid; } Powered by webdoc!