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

View File

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