Newer
Older
HuangJiPC / public / static / three / examples / jsm / offscreen / offscreen.js
@zhangdeliang zhangdeliang on 21 Jun 188 bytes update
import init from './scene.js';

self.onmessage = function ( message ) {

	const data = message.data;
	init( data.drawingSurface, data.width, data.height, data.pixelRatio, data.path );

};