xxxxxxxxxx
15
var emoji;
function preload() {
emoji = loadImage('Crying_Laughing_Emoji.png');
}
function setup() {
createCanvas(400, 400);
imageMode(CENTER);
background(200);
}
function draw() {
image(emoji, mouseX, mouseY, 50, 50);
}