Adds playground/js/eoc/ with EOCModule base class, EOCChain container, and barrel index. Implements bypass GainNode graph, connect/rewire algorithm, ordered module management, flat NISPS param routing, and eoc:change CustomEvent dispatch on structural changes.
7 lines
271 B
JavaScript
7 lines
271 B
JavaScript
// eoc/index.js — barrel re-export for the End-of-Chain effects system.
|
|
//
|
|
// Import from here to get the full EOC API:
|
|
// import { EOCModule, EOCChain } from './eoc/index.js';
|
|
|
|
export { EOCModule } from './eoc-module.js';
|
|
export { EOCChain } from './eoc-chain.js';
|