clearing out a bunch of samples

This commit is contained in:
2023-08-21 12:24:49 +02:00
parent d7bdd3508f
commit bc0b3f8b91

View File

@ -31,16 +31,13 @@ Array.prototype.in = function <T>(this: T[], value: T): boolean {
};
async function loadSamples() {
const ds = "https://raw.githubusercontent.com/felixroos/dough-samples/main/";
// const ds = "https://raw.githubusercontent.com/felixroos/dough-samples/main/";
return Promise.all([
initAudioOnFirstClick(),
samples("github:Bubobubobubobubo/Topos-Samples/main"),
samples(`${ds}/tidal-drum-machines.json`),
samples(`${ds}/piano.json`),
samples(`${ds}/Dirt-Samples.json`),
samples(`${ds}/EmuSP12.json`),
samples(`${ds}/vcsl.json`),
registerSynthSounds(),
samples("github:tidalcycles/Dirt-Samples/master").then(() =>
registerSynthSounds()
),
]);
}