draw backdrop

This commit is contained in:
Tangent Wantwight 2020-03-26 00:29:32 -04:00
parent 3a2bc5654e
commit 281514e7b7

View file

@ -22,6 +22,8 @@ export class Main extends LockstepClient<KeyName[], Data> {
subscribe((frame: Data) => { subscribe((frame: Data) => {
const drawSet = new DrawSet(); const drawSet = new DrawSet();
cx.fillStyle = "#000";
cx.fillRect(0, 0, canvas.width, canvas.height);
RunRenderBounds(frame, drawSet); RunRenderBounds(frame, drawSet);