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

    Type Alias Minimixer

    key value
    type entity
    key "minimixer"
    is

    data structure for the minimixer

    type Minimixer = {
        auxIsPreGain: PrimitiveField<boolean, "mut">;
        auxReturnInput: NexusObject<Empty>;
        auxSendGain: PrimitiveField<number, "mut">;
        auxSendOutput: NexusObject<Empty>;
        channel1: NexusObject<MinimixerChannel>;
        channel2: NexusObject<MinimixerChannel>;
        channel3: NexusObject<MinimixerChannel>;
        channel4: NexusObject<MinimixerChannel>;
        displayName: PrimitiveField<string, "mut">;
        gain: PrimitiveField<number, "mut">;
        mainOutput: NexusObject<Empty>;
        positionX: PrimitiveField<number, "mut">;
        positionY: PrimitiveField<number, "mut">;
    }
    Index

    Properties

    auxIsPreGain: PrimitiveField<boolean, "mut">

    Whether or not the aux effect will be applied before or after the main gain.

    If this is true, the aux are sent to the effect before the main gain is applied to them; if false, the are sent after. In both cases, the aux return remains unaffected by the main gain. This means, if this is true, the main gain is not applied to the aux at all.

    key value
    default true
    is api.TargetType.AutomatableParameter
    auxReturnInput: NexusObject<Empty>

    the aux return output of the minimixer

    key value
    is api.TargetType.AudioInput
    auxSendGain: PrimitiveField<number, "mut">

    The aux level allows for the sum of aux sends to be leveled before being sent to some effect. Equivalent to a dB range of [-inf, 0.0].

    key value
    default 1
    range [0, 1]
    is api.TargetType.AutomatableParameter
    auxSendOutput: NexusObject<Empty>

    the aux send output of the minimixer

    key value
    is api.TargetType.AudioOutput

    The first channel of the minimixer.

    The second channel of the minimixer.

    The third channel of the minimixer.

    The fourth channel of the minimixer.

    displayName: PrimitiveField<string, "mut">

    The user-assigned name of this device.

    gain: PrimitiveField<number, "mut">

    The main gain of the minimixer. Equivalent to a dB range of [-inf, 0.0].

    key value
    default 1
    range [0, 1]
    is api.TargetType.AutomatableParameter
    mainOutput: NexusObject<Empty>

    the main audio output of the minimixer

    key value
    is api.TargetType.AudioOutput
    positionX: PrimitiveField<number, "mut">

    X position on the desktop in the DAW.

    key value
    default 0
    range full
    positionY: PrimitiveField<number, "mut">

    Y position on the desktop in the DAW.

    key value
    default 0
    range full