cacophony
    Preparing search index...

    Interface CacophonyEffect

    Public surface every Cacophony effect implements. build materializes the effect's live node graph against a specific audio context. A Bus consumes an effect as shared live state; a source consumes it as a recipe and calls build once for every playback. Cacophony itself does not cache.

    interface CacophonyEffect {
        build(context: BaseContext): BuiltEffect | Promise<BuiltEffect>;
    }

    Implemented by

    Index