From bb2121a97370c1cd7fc3e95a7a066b61c165606d Mon Sep 17 00:00:00 2001 From: Mees Roelofsz Date: Wed, 22 Nov 2023 15:19:05 +0100 Subject: [PATCH] changed canvas size --- web/game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/game.js b/web/game.js index 8ed69f1..f0692ee 100644 --- a/web/game.js +++ b/web/game.js @@ -2,7 +2,7 @@ // the function setup() is called once when the page is loaded function setup(){ // create a canvas element and append it to the body - createCanvas(800, 600); + createCanvas(1200, 1000); // disable the outline of shapes noStroke();