xxxxxxxxxx
27
var sound_test;
function whileLoading(total){
document.getElementById('progress').value = total;
}
function readyLoading(){
}
function preload() {
// Thanks for https://maoudamashii.jokersounds.com/list/bgm7.html
sound_test = loadSound("bgm_maoudamashii_orchestra16.mp3",
readyLoading, null, whileLoading);
}
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
}
function mouseClicked() {
// sound_test.play();
}