Files
web3d/3MF_test/test_js_call/jsm/offscreen/offscreen.js
T
Samuele Locatelli cd20574a81 Aggiunta tests
2023-09-27 11:29:44 +02:00

9 lines
188 B
JavaScript

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