mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-18 15:02:09 +00:00
10 lines
240 B
JavaScript
10 lines
240 B
JavaScript
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 );
|
|
|
|
};
|