pixi.js
Version:
PixiJS — The HTML5 Creation Engine =============
20 lines (17 loc) • 590 B
JavaScript
;
;
async function logDebugTexture(texture, renderer, size = 200) {
const base64 = await renderer.extract.base64(texture);
await renderer.encoder.commandFinished;
const width = size;
console.log(`logging texture ${texture.source.width}px ${texture.source.height}px`);
const style = [
"font-size: 1px;",
`padding: ${width}px ${300}px;`,
`background: url(${base64}) no-repeat;`,
"background-size: contain;"
].join(" ");
console.log("%c ", style);
}
exports.logDebugTexture = logDebugTexture;
//# sourceMappingURL=logDebugTexture.js.map