xxxxxxxxxx
22
let img;
let rotation = 0;
function preload() {
// img = loadImage('neopets.jpeg');
img = loadImage('world.png');
// img = loadImage('w.png');
}
function setup() {
createCanvas(windowWidth, windowHeight);
imageMode(CENTER);
background(220);
}
function draw() {
translate(mouseX, mouseY);
rotate(rotation);
rotation += random(-0.5, 0.5);
tint(255, 127);
image(img, 0, 0, 500, 350);
}