xxxxxxxxxx
49
let img;
let img2;
let scale_width = 50;
let scale_height = 50;
function preload() {
img = loadImage('https://vignette.wikia.nocookie.net/animalcrossing/images/a/aa/NH-icon-Skye_00.png/revision/latest?cb=20200224182217');
img2 = loadImage('https://vignette.wikia.nocookie.net/animalcrossing/images/a/a5/Plucky_HD.png/revision/latest/top-crop/width/360/height/450?cb=20180518160940')
}
function setup() {
createCanvas(windowWidth, windowHeight);
}
function mousePressed() {
let fs = fullscreen();
fullscreen(!fs);
}
function draw() {
background(0, 100, 50);
fill(50, 50, 200);
imageMode(CENTER);
scale_width += 0.6;
scale_height += 0.9;
push()
translate(width / 2, height / 2);
rotate(PI / 3.0);
pop()
image(img, mouseX, mouseY, scale_width, scale_height);
// image(img2, mouseX+125, mouseY, 200, 200);
}