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

// Cloned by ca400test 2 on 19 May 2019 from World "Trampoline World" by Alex Murphy 
// Please leave this clone trail here.
 
fullwidth  = ABWorld.fullwidth();
fullheight = ABWorld.fullheight();

// Tweakers Box - Play with code
                            ////
Samount = 8;                ////
sWidth = fullwidth/6;       ////
sHeight = fullheight/1.6;   ////
speed = 5;                  ////
                            ////
////////////////////////////////




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


/////// IGNORE BELOW ///////////

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