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

    Type Alias Kobolt

    key value
    type entity
    key "kobolt"
    is

    The Kobolt, a very simple 16 channel mixer.

    type Kobolt = {
        audioOutput: NexusObject<Empty>;
        channels: ArrayField<NexusObject<KoboltChannel>, 16>;
        displayName: PrimitiveField<string, "mut">;
        positionX: PrimitiveField<number, "mut">;
        positionY: PrimitiveField<number, "mut">;
        postGain: PrimitiveField<number, "mut">;
    }
    Index

    Properties

    audioOutput: NexusObject<Empty>

    The audio output of the kobolt.

    key value
    is api.TargetType.AudioOutput

    The 16 channels of the kobolt.

    displayName: PrimitiveField<string, "mut">

    The user-assigned name of this device.

    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 post-gain of the kobolt. Equivalent to a dB range of [-inf, 0.0].

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