UNPKG

pixi.js

Version:

<p align="center"> <a href="https://pixijs.com" target="_blank" rel="noopener noreferrer"> <img height="150" src="https://files.pixijs.download/branding/pixijs-logo-transparent-dark.svg?v=1" alt="PixiJS logo"> </a> </p> <br/> <p align="center">

35 lines (33 loc) 739 B
"use strict"; class BatchableSprite { constructor() { this.batcherName = "default"; this.topology = "triangle-list"; // batch specific.. this.attributeSize = 4; this.indexSize = 6; this.packAsQuad = true; this.roundPixels = 0; this._attributeStart = 0; // location in the buffer this._batcher = null; this._batch = null; } get blendMode() { return this.renderable.groupBlendMode; } get color() { return this.renderable.groupColorAlpha; } reset() { this.renderable = null; this.texture = null; this._batcher = null; this._batch = null; this.bounds = null; } destroy() { } } export { BatchableSprite }; //# sourceMappingURL=BatchableSprite.mjs.map