xxxxxxxxxx
27
var kick;
var lastTime;
function preload(){
kick = loadSound('sounds/kick.mp3');
}
function setup() {
createCanvas(600, 400);
background(100, 233, 100);
setInterval(audioLoop, 1000);
}
function draw(){
// Draw ellipses
for(let i = 0; i < 1000; i++){
ellipse(random()*width, random()*height, 100, 100);
}
}
// Better, but still not reliable.
function audioLoop(){
kick.play();
}