sdfsdfs
This commit is contained in:
19
node_modules/pixi.js/lib/utils/logging/logDebugTexture.js
generated
vendored
Normal file
19
node_modules/pixi.js/lib/utils/logging/logDebugTexture.js
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
'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
|
Reference in New Issue
Block a user