@audiotool/nexus - v0.0.12
    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">