Adding two engines and one processor

This commit is contained in:
2025-10-13 10:33:12 +02:00
parent c1f7cc02fd
commit cb730237f5
5 changed files with 1129 additions and 0 deletions

View File

@ -14,6 +14,8 @@ import { AdditiveEngine } from './AdditiveEngine';
import { Snare } from './Snare';
import { BassDrum } from './BassDrum';
import { HiHat } from './HiHat';
import { ParticleNoise } from './ParticleNoise';
import { DustNoise } from './DustNoise';
export const engines: SynthEngine[] = [
new Sample(),
@ -31,4 +33,6 @@ export const engines: SynthEngine[] = [
new Ring(),
new KarplusStrong(),
new AdditiveEngine(),
new ParticleNoise(),
new DustNoise(),
];