Code viewer for World: Jumpscare dont click


 const MUSICFILE = '/uploads/indy/Toccata-and-fugue-in-d-minor.mp3';
AB.backgroundMusic ( MUSICFILE );

let bg;
let y = 0;

function setup() {
  // The background image must be the same size as the parameters
  // into the createCanvas() method. In this program, the size of
  // the image is 720x400 pixels.
  bg = loadImage('uploads/indy/1669400606.png');
  createCanvas(1708, 821);
}

function draw() {
  background(bg);


}