API reference
Every public class, method, and event in @codexo/exojs. Generated from source.
classDelayFilter
@codexo/exojs / audio / stable
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.
6
props
1
methods
0
events
Import
import { DelayFilter } from '@codexo/exojs' 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.
Constructors 1
new(options: DelayFilterOptions): DelayFilter Methods 1
destroy(): void Properties 6
delaySeconds: number feedback: number inputNode: AudioNode outputNode: AudioNode ready: Promise<void> wet: number Source