Comments

Log in with itch.io to leave a comment.

All your images are missing, so it's currently unplayable! Please add them. I'm really excited to check out the final product.

Make sure you are referencing the local folder and not the full domain, meaning that instead of this...


 shutDown = loadImage("C:/Users/kevin/Desktop/processing-3.5.3/Files/FGP/shutdown2.png");
  gamExe = loadImage("C:/Users/kevin/Desktop/processing-3.5.3/Files/FGP/game.png");

etc.

It should look like this with all the asset files in the data subfolder of your project folder:

  shutDown = loadImage("shutdown2.png");
  gamExe = loadImage("game.png");

etc.

(+1)

Sorry about that, I fixed it now.

Great!