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

    Type Alias MixerAuxRoute

    key value
    type entity
    key "mixerAuxRoute"
    is

    Connects a group or channel strip to an aux strip. There can be at most one aux route connecting a given pair of entities. Even though the DAW shows connections of all channels to all aux strips, the document structure doesn't need them all - missing routes are shown as having gain of 0 in the DAW.

    type MixerAuxRoute = {
        auxReceive: PrimitiveField<NexusLocation, "immut">;
        auxSend: PrimitiveField<NexusLocation, "immut">;
        gain: PrimitiveField<number, "mut">;
    }
    Index

    Properties

    auxReceive: PrimitiveField<NexusLocation, "immut">

    Points to the aux strip that receives the signal from the mixer channel/group.

    key value
    default no default, required
    required true
    targets api.TargetType.MixerAuxReceive, meaning one of:
    entities.MixerAux,
    entities.MixerDelayAux,
    entities.MixerReverbAux
    immutable true
    auxSend: PrimitiveField<NexusLocation, "immut">

    Points to the mixer channel/group that sends the signal to the aux strip.

    key value
    default no default, required
    required true
    targets api.TargetType.MixerAuxSend, meaning one of:
    entities.MixerChannel.auxSend,
    entities.MixerGroup.auxSend
    immutable true
    gain: PrimitiveField<number, "mut">

    A gain applied to this route. Equivalent to a dB range of [-inf, 0.0].

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