diff --git a/src/classes/SoundEvent.ts b/src/classes/SoundEvent.ts index 4f6c706..b6cb426 100644 --- a/src/classes/SoundEvent.ts +++ b/src/classes/SoundEvent.ts @@ -106,7 +106,7 @@ export class SoundEvent extends AudibleEvent { public db = this.dbgain; public cutoff = (value: number) => this.updateValue("cutoff", value); public lpf = this.cutoff; - public resonance = (value: number) => this.updateValue("resonance", value); + public resonance = (value: number) => this.updateValue("resonance", value*50); public lpq = this.resonance; public hcutoff = (value: number) => this.updateValue("hcutoff", value); public hpf = this.hcutoff;