File size: 240 Bytes
6cd9596
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
self.importScripts( '../../../build/three.js' );
self.importScripts( './scene.js' );

self.onmessage = function ( message ) {

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

};