Files
nothoughts/node_modules/pixi.js/lib/utils/logging/logDebugTexture.js
2025-08-04 18:57:35 +02:00

20 lines
590 B
JavaScript

'use strict';
"use strict";
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