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

    Type Alias KoboltChannel

    key value
    type object

    A channel in the Kobolt.

    type KoboltChannel = {
        audioInput: NexusObject<Empty>;
        gain: PrimitiveField<number, "mut">;
        panning: PrimitiveField<number, "mut">;
    }
    Index

    Properties

    audioInput: NexusObject<Empty>

    The pointer to the input that this channel is connected to.

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

    The channel input gain of a kobolt channel. Equivalent to a dB range of [-inf, 0.0].

    key value
    default 1
    range [0, 1]
    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