xxxxxxxxxx
21
// Mimi Yin
// NYU-ITP
// Sound samples
let sounds = [];
function preload() {
// Load all the sounds
for (let i = 0; i < 7; i++) {
sounds.push(loadSound("data/" + i + ".mp3"));
}
}
function setup() {
createCanvas(windowWidth, windowHeight);
}
function keyPressed(){
sounds[key].play();
}