020 : Node 020
Balthazar:
xxxx
function draw() {
...
}
// Erase the canvas by filling it with white.
// Erase the canvas by filling it with black.
function erase(ctx) {
ctx.fillStyle = "#ffffff";
ctx.fillStyle = "#000000";
ctx.fillRect(0, 0, _game.width, _game.height);
}
GOTO 025