xxxxxxxxxx
24
/* This sketch is going to load and play a sound song - Someday by Coyote Hearing Link from https://www.youtube.com/audiolibrary/music?nv=1 By Matthew Civitarese 2020 */
let song
function preload() {
song = loadSound('data/Someday.mp3');
}
function setup() {
createCanvas(400, 400);
song.play();
}
function draw() {
background(220);
}
function mousePressed() {
if (song.isPlaying()) {
song.stop();
} else {
song.play();
}
}