API reference
Every public class, method, and event in @codexo/exojs. Generated from source.
interfacePhaserEffectOptions
@codexo/exojs-audio-fx / audio / stable
Construction options for PhaserEffect.
6
props
0
methods
0
events
Import
import { PhaserEffectOptions } from '@codexo/exojs-audio-fx'Construction options for PhaserEffect.
Properties6
baseFrequency?: numberCentre frequency of all allpass stages in Hz. Range 50..5000, default 500.
depth?: numberLFO modulation depth as a fraction of baseFrequency. Range 0..1, default 0.6. The LFO peak deviation equals depth × baseFrequency Hz, so the filter frequencies sweep between baseFrequency ± depth × baseFrequency.
feedback?: numberFeedback gain from the last stage back to the first stage. Range 0..0.9, default 0.3. Higher values add resonance and sharpen the notch sweep.
rateHz?: numberLFO sweep rate in Hz. Range 0..20, default 0.5.
stages?: numberNumber of allpass filter stages. Must be an even integer in the range 2..12. Odd values are rounded up to the next even number. Default 4.
wet?: numberDry/wet mix, 0..1. The dry level is automatically 1 - wet. Default 0.5.
Source