API reference

Every public class, method, and event in @codexo/exojs. Generated from source.

C

classLowpassFilter

@codexo/exojs / audio / stable

Low-pass filter backed by a `BiquadFilterNode` in `lowpass` mode. Attenuates frequencies above the cutoff and passes everything below it. Useful for muffling audio (e.g., sound heard through a wall), taming harsh high-frequency content, or creating underwater/telephone effects. The `resonance` (Q) parameter controls the sharpness of the roll-off peak.

5
props
1
methods
0
events
Import
import { LowpassFilter } from '@codexo/exojs'

Low-pass filter backed by a `BiquadFilterNode` in `lowpass` mode. Attenuates frequencies above the cutoff and passes everything below it. Useful for muffling audio (e.g., sound heard through a wall), taming harsh high-frequency content, or creating underwater/telephone effects. The `resonance` (Q) parameter controls the sharpness of the roll-off peak.

Constructors 1
new(options: LowpassFilterOptions): LowpassFilter
Methods 1
destroy(): void
Properties 5
frequency: number
inputNode: AudioNode
outputNode: AudioNode
ready: Promise<void>
resonance: number
Source