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

    Type Alias Crossfader

    key value
    type entity
    key "crossfader"
    is

    The crossfader is a tiny mixer with 2 input channels.

    type Crossfader = {
        audioOutput: NexusObject<Empty>;
        blendModeIndex: PrimitiveField<number, "mut">;
        channelA: NexusObject<CrossfaderChannel>;
        channelB: NexusObject<CrossfaderChannel>;
        crossfade: PrimitiveField<number, "mut">;
        displayName: PrimitiveField<string, "mut">;
        panning: PrimitiveField<number, "mut">;
        positionX: PrimitiveField<number, "mut">;
        positionY: PrimitiveField<number, "mut">;
        postGain: PrimitiveField<number, "mut">;
    }
    Index

    Properties

    audioOutput: NexusObject<Empty>

    Single Output.

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

    The algorithm used to blend the two input channels. 0: invalid 1: Quadratic 2: Center 3: Linear

    key value
    default 1
    range [1, 3]

    The first input channel (channel "A") of the crossfader.

    The second input channel (channel "B") of the crossfader.

    crossfade: PrimitiveField<number, "mut">

    Determines how the crossfade blends between channel A & channel B. -1 is fully channel A, 0 is balanced, 1 is fully channel B.

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

    The user-assigned name of this device.

    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
    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
    postGain: PrimitiveField<number, "mut">

    The "master gain" crossfader. Equivalent to a dB range of [-inf, 0.0].

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