xxxxxxxxxx
31
let soundFile;
function preload() {
soundFile = loadSound('transmission.mp3');
}
function setup() {
createCanvas(400, 400);
}
function draw() {
background(0);
textAlign(CENTER, CENTER);
textSize(500);
fill(230, 230, 250);
if (soundFile.isPlaying()) {
text("⦿", width / 2, height / 2);
} else {
text("⦾", width / 2, height / 2);
}
}
function mousePressed() {
if (soundFile.isPlaying()) {
soundFile.pause();
} else {
soundFile.play();
}
}