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

    Type Alias PatternTrack

    key value
    type entity
    key "patternTrack"
    is api.TargetType.PatternTrack

    a pattern track that allows automating pattern changes for devices that support them

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

    Properties

    isEnabled: PrimitiveField<boolean, "mut">

    If the track is disabled, no pattern is 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 pattern information from this track.

    key value
    default no default, required
    required true
    targets api.TargetType.PatternTrackPlayer, meaning one of:
    entities.Bassline,
    entities.Beatbox8,
    entities.Beatbox9,
    entities.Machiniste,
    entities.MatrixArpeggiator,
    entities.Rasselbock,
    entities.Tonematrix
    immutable true