@pixi/core
Version:
Core PixiJS
14 lines (13 loc) • 320 B
JavaScript
class BatchTextureArray {
constructor() {
this.elements = [], this.ids = [], this.count = 0;
}
clear() {
for (let i = 0; i < this.count; i++)
this.elements[i] = null;
this.count = 0;
}
}
exports.BatchTextureArray = BatchTextureArray;
//# sourceMappingURL=BatchTextureArray.js.map
;