Comments

Log in with itch.io to leave a comment.

Can you try uploading it as a zip?

Done.

Thanks! FYI you can call setup() to restart the game. E.g.,

void lose() {

  if (gameState == 6){
    background(lose);
    if (keyPressed && key == ' ') setup();
  }
}

Noted, thanks!