FLUJOS/VISUALIZACION/node_modules/three/examples/jsm/offscreen/offscreen.js
2025-11-07 00:06:12 +01:00

8 lines
188 B
JavaScript
Executable file

import init from './scene.js';
self.onmessage = function ( message ) {
const data = message.data;
init( data.drawingSurface, data.width, data.height, data.pixelRatio, data.path );
};