Class PingPongDelay

A ping-pong (alternating left/right) delay audio effector.

Placeholder class. PingPongDelay is currently declared as an empty class (export class PingPongDelay {}) — it does not extend Effector, and has no properties, methods, or constructor arguments of its own. It cannot be attached to a Channel or Master via addEffect()/attachEffect() yet, since those expect an Effector instance. A PingPongDelayProcessor AudioWorklet processor name is already reserved in AudioWorkletProcessorNames, suggesting this class is planned but not yet wired up.

Example

import { PingPongDelay } from "@fluex/fluexgl-dsp";

const delay = new PingPongDelay();

Constructor

new PingPongDelay(): PingPongDelay;

Takes no arguments. Uses the default (implicit) constructor.


Properties

This class has no public properties.


Methods

This class has no public methods.


Events

This class does not emit any events.

Getters and setters

This class does not define public getters or setters.