Interface UnisonVoiceParams

Parameters for the timbre, ADSR and voice stack of the synth.

interface UnisonVoiceParams {
    attackTime: number;
    audioDelay: number;
    decayTime: number;
    periodicWave?: PeriodicWave;
    releaseTime: number;
    spread: number;
    stackSize: number;
    sustainLevel: number;
    type: OscillatorType;
}

Hierarchy (view full)

Properties

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).

periodicWave?: PeriodicWave

Custom waveform.

releaseTime: number

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

spread: number

Spread of voice frequencies in ±Hertz.

stackSize: number

Number of voices to play in unison.

sustainLevel: number

Steady state amplitude.

type: OscillatorType

One of "sine", "sawtooth", "triangle", "square" or "custom" if periodicWave is set.