fix pb with hpf
This commit is contained in:
@ -147,6 +147,13 @@ export class SoundEvent extends AudibleEvent {
|
|||||||
}
|
}
|
||||||
return this;
|
return this;
|
||||||
},
|
},
|
||||||
|
hpf: (value: number, resonance?: number) => {
|
||||||
|
this.updateValue("hcutoff", value);
|
||||||
|
if (resonance) {
|
||||||
|
this.updateValue("hresonance", resonance);
|
||||||
|
}
|
||||||
|
return this;
|
||||||
|
},
|
||||||
hpq: (value: number) => {
|
hpq: (value: number) => {
|
||||||
this.updateValue("hresonance", value);
|
this.updateValue("hresonance", value);
|
||||||
return this;
|
return this;
|
||||||
|
|||||||
Reference in New Issue
Block a user