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

    Type Alias MinimixerChannel

    key value
    type object

    data structure for a channel in the minimixer

    type MinimixerChannel = {
        audioInput: NexusObject<Empty>;
        auxIsPreGain: PrimitiveField<boolean, "mut">;
        auxSendGain: PrimitiveField<number, "mut">;
        gain: PrimitiveField<number, "mut">;
        isMuted: PrimitiveField<boolean, "mut">;
        isSoloed: PrimitiveField<boolean, "mut">;
        panning: PrimitiveField<number, "mut">;
    }
    Index

    Properties

    audioInput: NexusObject<Empty>

    the pointer an input can connect to

    key value
    is api.TargetType.AudioInput
    auxIsPreGain: PrimitiveField<boolean, "mut">

    Whether or not the aux effect will be applied before or after the gain parameter of this channel.

    This parameter works the same as the aux_is_pre_gain parameter of the Minimixer.

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

    How much of the channel's audio will be routed out off to the main aux effects.

    key value
    default 0
    range [0, 1]
    is api.TargetType.AutomatableParameter
    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
    isMuted: PrimitiveField<boolean, "mut">

    Mutes this channel. If is_muted=true, the channel is muted, including its aux sends.

    key value
    default false
    is api.TargetType.AutomatableParameter
    isSoloed: PrimitiveField<boolean, "mut">

    Solo this channel. If is_soloed=true, all channels that don't have is_soloed=true are muted.

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

    Pans the signal to left/right. -1 is fully left, 0 is centered (unchanged), 1 is fully right.

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