Adding a new MarkDown note buffer for each universe

This commit is contained in:
2023-08-03 18:38:48 +02:00
parent bd76893282
commit 4c239c12f1
8 changed files with 135 additions and 162 deletions

View File

@ -4,8 +4,6 @@ import { tryEvaluate } from "./Evaluator";
import { MidiConnection } from "./IO/MidiConnection";
// @ts-ignore
import { webaudioOutput, samples } from '@strudel.cycles/webaudio';
// @ts-ignore
import { ZZFX, zzfx } from "zzfx";
interface TimePoint {
bar: number,
@ -426,9 +424,6 @@ export class UserAPI {
// Trivial functions
// =============================================================
// Small ZZFX interface for playing with this synth
zzfx = (...thing: number[]) => zzfx(...thing);
sound = async (values: object) => {
webaudioOutput(sound(values), 0.00)
}