Files
METH_Transcendence/site/node_modules/three/examples/jsm/offscreen/offscreen.js
Kum1ta 57c261c689 Site
- starting pong game 3d
2024-07-30 01:08:32 +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 );
};