sw-synth
    Preparing search index...

    Interface AperiodicVoiceParams

    Parameters for the inharmonic timbre and ADSR envelope of the synth. See aperiodic-oscillator documentation for AperiodicWave.

    interface AperiodicVoiceParams {
        aperiodicWave: AperiodicWave;
        attackTime: number;
        audioDelay: number;
        decayTime: number;
        releaseTime: number;
        sustainLevel: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    aperiodicWave: AperiodicWave

    AperiodicWave representing an inharmonic timbre.

    attackTime: number

    Attack time in seconds.

    audioDelay: number

    Audio delay in seconds. Increase on Firefox to reduce pops.

    decayTime: number

    Decay time constant (exponential decay from 1 to sustainLevel).

    releaseTime: number

    Release time constant (exponential decay from sustainLevel to 0).

    sustainLevel: number

    Steady state amplitude.