fix pb with hpf

This commit is contained in:
2023-11-05 17:16:07 +01:00
parent e8b6efcc19
commit 280778b2c9

View File

@ -147,6 +147,13 @@ export class SoundEvent extends AudibleEvent {
}
return this;
},
hpf: (value: number, resonance?: number) => {
this.updateValue("hcutoff", value);
if (resonance) {
this.updateValue("hresonance", resonance);
}
return this;
},
hpq: (value: number) => {
this.updateValue("hresonance", value);
return this;