You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
351 B
19 lines
351 B
2 years ago
|
import {init, state} from './shared-cubes.js';
|
||
|
|
||
|
function size(data) {
|
||
|
state.width = data.width;
|
||
|
state.height = data.height;
|
||
|
}
|
||
|
|
||
|
const handlers = {
|
||
|
init,
|
||
|
size,
|
||
|
};
|
||
|
|
||
|
self.onmessage = function(e) {
|
||
|
const fn = handlers[e.data.type];
|
||
|
if (typeof fn !== 'function') {
|
||
|
throw new Error('no handler for type: ' + e.data.type);
|
||
|
}
|
||
|
fn(e.data);
|
||
|
};
|