Code viewer for World: Trampoline World
fullwidth  = ABWorld.fullwidth();
fullheight = ABWorld.fullheight();

// Tweakers Box - Play with code
                            ////
Samount = 4;                ////
sWidth = fullwidth/8;       ////
sHeight = fullheight/3.5;   ////
speed = 8;                  ////
                            ////
////////////////////////////////




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();
            }
        });
}