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

    Type Alias NoteSplitterChannel

    key value
    type object

    data structure for the NoteSplitter's channels

    type NoteSplitterChannel = {
        isMuted: PrimitiveField<boolean, "mut">;
        notesOutput: NexusObject<Empty>;
        velocityModulation: PrimitiveField<number, "mut">;
    }
    Index

    Properties

    isMuted: PrimitiveField<boolean, "mut">

    Whether the channel sends notes to its output. If is_muted=true, no notes are forwarded.

    key value
    default false
    is api.TargetType.AutomatableParameter
    notesOutput: NexusObject<Empty>

    Notes output for this channel.

    key value
    is api.TargetType.NotesOutput
    velocityModulation: PrimitiveField<number, "mut">

    Modulates the velocity of the notes:

    • range [-1, 0]: "overwrites" the velocity from 0-100% (maps to 0..127 in MIDI).
    • range [0, 1]: final velocity blends from x% to 100% based on note velocity.
    key value
    default 0
    range [-1, 1]
    is api.TargetType.AutomatableParameter