feat: Add Be and tbd skill, also added Roadmap file

This commit is contained in:
2026-05-10 16:32:12 -04:00
parent 3500ade13f
commit 0bb8885802
29587 changed files with 10611695 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
'use strict';
exports.__esModule = true;
var _WebGLExtract = require('./webgl/WebGLExtract');
Object.defineProperty(exports, 'webgl', {
enumerable: true,
get: function get() {
return _interopRequireDefault(_WebGLExtract).default;
}
});
var _CanvasExtract = require('./canvas/CanvasExtract');
Object.defineProperty(exports, 'canvas', {
enumerable: true,
get: function get() {
return _interopRequireDefault(_CanvasExtract).default;
}
});
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
//# sourceMappingURL=index.js.map

View File

@@ -0,0 +1 @@
{"version":3,"sources":["../../src/extract/index.js"],"names":["default"],"mappings":";;;;;;;;;iDAoBSA,O;;;;;;;;;kDACAA,O","file":"index.js","sourcesContent":["/**\n * This namespace provides renderer-specific plugins for exporting content from a renderer.\n * For instance, these plugins can be used for saving an Image, Canvas element or for exporting the raw image data (pixels).\n *\n * Do not instantiate these plugins directly. It is available from the `renderer.plugins` property.\n * See {@link PIXI.CanvasRenderer#plugins} or {@link PIXI.WebGLRenderer#plugins}.\n * @example\n * // Create a new app (will auto-add extract plugin to renderer)\n * const app = new PIXI.Application();\n *\n * // Draw a red circle\n * const graphics = new PIXI.Graphics()\n * .beginFill(0xFF0000)\n * .drawCircle(0, 0, 50);\n *\n * // Render the graphics as an HTMLImageElement\n * const image = app.renderer.plugins.extract.image(graphics);\n * document.body.appendChild(image);\n * @namespace PIXI.extract\n */\nexport { default as webgl } from './webgl/WebGLExtract';\nexport { default as canvas } from './canvas/CanvasExtract';\n"]}