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

    Type Alias NoteTrack

    key value
    type entity
    key "noteTrack"
    is api.TargetType.NoteTrack

    A note track containing note regions. A note track must always be attached to a note playing device and can't exist without one.

    type NoteTrack = {
        groove: PrimitiveField<NexusLocation, "mut">;
        isEnabled: PrimitiveField<boolean, "mut">;
        orderAmongTracks: PrimitiveField<number, "mut">;
        player: PrimitiveField<NexusLocation, "immut">;
    }
    Index

    Properties

    Optionally apply a Groove to the notes.

    key value
    default empty location
    required false
    targets api.TargetType.Groove, meaning one of:
    entities.Groove
    isEnabled: PrimitiveField<boolean, "mut">

    If the track is disabled, no notes are played back.

    key value
    default true
    orderAmongTracks: PrimitiveField<number, "mut">

    Sorts this track visually among all tracks. Must be unique among all AutomationTracks, NoteTracks, PatternTracks, and AudioTracks.

    key value
    default 0
    range full
    player: PrimitiveField<NexusLocation, "immut">

    The entity that receives the notes of this note track.

    key value
    default no default, required
    required true
    targets api.TargetType.NoteTrackPlayer, meaning one of:
    entities.Bassline,
    entities.Beatbox8,
    entities.Beatbox9,
    entities.Gakki,
    entities.GenericVst3PluginBeta,
    entities.Heisenberg,
    entities.Machiniste,
    entities.MatrixArpeggiator,
    entities.NoteSplitter,
    entities.Pulverisateur,
    entities.Space,
    entities.SpitfireLabsVst3Plugin,
    entities.Tonematrix
    immutable true