This commit is contained in:
2023-09-06 22:31:50 +02:00
parent 0ddc77e63f
commit 98e77540e9

View File

@ -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*50 => Math.min(Math.max(value, 0), 50);
public resonance = (value: number) => this.updateValue("resonance", Math.min(Math.max(value, 0), 50));
public lpq = this.resonance;
public hcutoff = (value: number) => this.updateValue("hcutoff", value);
public hpf = this.hcutoff;