xxxxxxxxxx
48
let drums=[];
let x = 0;
function preload(){
for(let d = 0; d<7; d++){
let drum = loadSound("drums/" + d +".mp3");
drums.push(drum);
}
}
function setup() {
createCanvas(windowWidth, windowHeight);
}
let BEAT = 60;
function draw() {
x++;
if (x>width){
x=0;
background('white')
}
let y = 0;
fill('black');
// if (frameCount % 60 == 0){
// drums[0].play();
// rect (x,y,5,15);
// }
y+=height/drums.length;
// //MANGO DRUM//
// if (frameCount % (BEAT/2) == 0){
// drums[1].play();
// rect (x,y,5,15);
// }
//SYNCOPATED//
if (frameCount % BEAT == 41){
drums[2].play();
rect (x,y,5,15);
}
}
function keyPressed (){
drums[key-1].play();
}