// Cloned by Aideen Byrne on 12 Oct 2020 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 = 2; ////
sWidth = fullwidth/3; ////
sHeight = fullheight/3; ////
speed = 5; ////
////
////////////////////////////////
function preload()
{
spidey = loadImage('uploads/aideen/1602535359.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();
}
});
}