Remove debug noise

This commit is contained in:
Tony Garnock-Jones 2023-02-04 13:23:45 +01:00
parent fa1a597fb8
commit c54e2cc62e
2 changed files with 3 additions and 8 deletions

View File

@ -190,8 +190,7 @@ async function enterScene(
z: Shapes.DoubleValue.immediate(0),
}) });
assert (() => {
const s = Shapes.Sprite({
assert Shapes.Sprite({
name: id,
formals: [_POS, _HEAD, _BODY],
shape: B.nonphysical(
@ -214,10 +213,7 @@ async function enterScene(
B.plane()))),
]))),
]))),
});
console.log(s);
return s;
})();
});
}
}
@ -291,7 +287,7 @@ window.addEventListener('load', async () => {
Dataspace.boot(ds => {
html.boot(ds);
timer.boot(ds);
wsRelay.boot(ds, true);
wsRelay.boot(ds, false);
wakeDetector.boot(ds);
bootApp(ds, runningEngine);
});

View File

@ -40,7 +40,6 @@ export class Environment {
"variable": f,
"value": $newValue,
}) => {
console.log('Got value for', spriteName, f, newValue);
v.value = newValue;
}
}