xxxxxxxxxx
28
let song;
function preload() {
song = loadSound('shostakovic_shorter.mp3', loaded);
}
function loaded (){
song.play();
}
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
}
// function mousePressed() {
// if (song.isPlaying()) {
// // .isPlaying() returns a boolean
// song.pause(); // .play() will resume from .pause() position
// background(255, 0, 0);
// } else {
// song.play();
// background(0, 255, 0);
// }
// }