diff --git a/web/game.js b/web/game.js index 24f2cdd..279f865 100644 --- a/web/game.js +++ b/web/game.js @@ -372,7 +372,7 @@ function spawnRandomBullet() { function homescreen() { push() - circle(100, 100, 100) + square(width/2, height/2, 100) color(255, 0, 255, 200) pop() } diff --git a/web/js/homescreen.js b/web/js/homescreen.js index 39f1137..4f77e83 100644 --- a/web/js/homescreen.js +++ b/web/js/homescreen.js @@ -12,7 +12,10 @@ class Startscreen { draw() { + push() circle(100, 100, 100) + fill(255, 0, 255) + pop() } update() {