xxxxxxxxxx
var song1
function setup() {
createCanvas(1000, 1000);
background(100);
}
function preload() {
tri = loadImage("653059_arrows_512x512.png");
song1 = loadSound('song.mp3');
as = loadImage("astronomia-coffin-dance-meme-song-vicetone-x-tony-igy-piano-sheet.jpg");
}
function draw() {
image(tri, 450, 450, 100,100);
if (mouseIsPressed) {
tri=null;
song1.play();
image(as , 250, 250, 500, 500);
let s="we are having an epidemic, please watch your hand before touching anything!"
text(s,300,800)
}
}