export const PresetSources: Array<{ name: string; kind: "source"; // eslint-disable-next-line @typescript-eslint/no-explicit-any [x: string]: any; }> = [ { soundSet: { name: "Gurgles", }, kind: "source", volume: 1, interval: [4, 6], pitch: [0.9, 1.1], panning: [-0.7, 0.7], name: "Gurgles", type: "IntervalSource", }, { soundSet: { name: "Burps", }, kind: "source", volume: 1, interval: [15, 45], pitch: [0.7, 1.1], panning: [-0.1, 0.1], name: "Burps", type: "IntervalSource", }, { soundSet: { name: "Guts", }, kind: "source", volume: 1, interval: [7, 15], pitch: [0.7, 1.1], panning: [-0.5, 0.5], name: "Guts", type: "IntervalSource", }, { soundSet: { name: "Squishing", }, kind: "source", volume: 1, pitch: 1, name: "Squishing", type: "LoopingSource", }, { soundSet: { name: "Heartbeat", }, kind: "source", volume: 1, pitch: 1, name: "Heartbeat", type: "LoopingSource", }, { soundSet: { name: "Breathing", }, kind: "source", volume: 1, pitch: 1, name: "Breathing", type: "LoopingSource", }, { soundSet: { name: "Rumble", }, kind: "source", volume: 1, pitch: 1, name: "Rumble", type: "LoopingSource", }, ]; // eslint-disable-next-line @typescript-eslint/no-explicit-any export const PresetFilters: Array<{ name: string; [x: string]: any }> = [ { cutoff: 1000, name: "Lowpass", kind: "filter", type: "LowpassFilter", }, { cutoff: 200, name: "Highpass", kind: "filter", type: "HighpassFilter", }, { width: 1, name: "Stereo Width", kind: "filter", type: "StereoWidthFilter", }, { time: 1, decay: 1, dry: 1, wet: 0.5, name: "Reverb", kind: "filter", type: "ReverbFilter", }, ]; export const DemoScene = [ ];