@audiotool/nexus - v0.0.12
    Preparing search index...

    Type Alias PulverisateurChannel

    key value
    type object

    This object contains fields shared between the Oscillators, noise and audio channels, such as whether they're turned on, panning, and gain.

    type PulverisateurChannel = {
        gain: PrimitiveField<number, "mut">;
        isActive: PrimitiveField<boolean, "mut">;
        panning: PrimitiveField<number, "mut">;
    }
    Index

    Properties

    Properties

    gain: PrimitiveField<number, "mut">

    This channel's output gain. Equivalent to a dB range of [-inf, 0.0].

    key value
    default 1
    range [0, 1]
    is api.TargetType.AutomatableParameter
    isActive: PrimitiveField<boolean, "mut">

    If is_active=false, the channel does not produce any sound.

    key value
    default true
    is api.TargetType.AutomatableParameter
    panning: PrimitiveField<number, "mut">

    Panning of the oscillator

    key value
    default 0
    range [-1, 1]
    is api.TargetType.AutomatableParameter