API reference
Every public class, method, and event in @codexo/exojs. Generated from source.
classDelayEffect
Echo/delay effect using a Web Audio `DelayNode` with a feedback loop and dry/wet mix. The feedback path feeds the delayed signal back into itself, producing repeating echoes that decay naturally. Setting `feedback` near its maximum of 0.95 produces a long, prominent tail; lower values create a single slap-back echo.
import { DelayEffect } from '@codexo/exojs-audio-fx' Echo/delay effect using a Web Audio `DelayNode` with a feedback loop and dry/wet mix. The feedback path feeds the delayed signal back into itself, producing repeating echoes that decay naturally. Setting `feedback` near its maximum of 0.95 produces a long, prominent tail; lower values create a single slap-back echo.
new(options: DelayEffectOptions): DelayEffect destroy(): void delaySeconds: number feedback: number inputNode: AudioNode outputNode: AudioNode ready: Promise<void> wet: number