• Jump To … +
    index.js conga.js cowbell.js hihat.js kick.js mini.js monosynth.js pluck.js snare.js tom.js tonewheel.js delay.js feedback-comb-filter.js filter.js gain-envelope.js gain.js lfo.js mono-buffer.js noise.js osc-bank.js osc.js pulse.js sample.js soft-clipper.js source.js vca.js vcf.js vco.js wave-shaper.js synth.js
  • ¶

    Delay

    import { createAudioNode } from "../synth"
  • ¶

    Delay a signal

    /**
     * Create a Delay node.
     */
    export default function Delay (ac, maxDelay, config) {
      return createAudioNode(ac, "Delay", Delay.params, maxDelay).update(config)
    }
    Delay.params = ["delayTime"]