Fixed-step world runtime, event bus wire protocol between lanes, integration seam (game.ts) with placeholder ball. Lanes A/B/C own disjoint dirs. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
9 lines
188 B
JavaScript
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 );
|
|
|
|
};
|