Code viewer for World: Trampoline World (clone by...

// Cloned by test2 on 29 Apr 2019 from World "Trampoline World" by Alex Murphy 
// Please leave this clone trail here.
 
 const hero = "uploads/alexmurphy1996/spiderman.png";
 const other = "uploads/alexmurphy1996/spiderman.png";
  
 
 
let sound;
let pokemon;
let spidey;

function preload()
{
    spidey = loadImage('uploads/alexmurphy1996/spiderman.png');
    pokemon = loadImage(other);
    sound = loadSound('uploads/alexmurphy1996/trampoline.mp3');
}

function setup() {
    createCanvas(710, 400);
        $.getScript ( "uploads/alexmurphy1996/trampoline.js", function() {
            if (sound.isLoaded()){
                setup();
            }
        });
}