xxxxxxxxxx
function preload() {
mitski = loadSound("texas_reznikoff.mp3");
}
function setup() {
createCanvas(500,500);
background(123, 164, 229);
textSize(11);
textAlign(CENTER);
text("wait for it...", 250, 175);
rectMode(CENTER);
rect(225, 250, 30, 100);
rect(275, 250, 30, 100);
}
function mousePressed() {
background(192, 214, 249);
mitski.play();
fill(random(255),random(255),255);
triangle(200, 200, 200, 300, 280, 250)
}