xxxxxxxxxx
29
var input;
function setup() {
input = createButton();
input.mousePressed(clicked);
// mimics the autoplay policy
//getAudioContext().suspend();
let mySynth = new p5.MonoSynth();
mySynth.play('A6');
// This won't play until the context has resumed
}
function draw() {
background(220);
//textAlign(CENTER, CENTER);
//text(getAudioContext().state, width/2, height/2);
}
function keyPressed() {
userStartAudio();
mySynth.play('A6');
}
function clicked()
{
userStartAudio();
input.hide();
}