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

    Type Alias BasslineStep

    key value
    type object

    a single step in a BasslinePattern

    type BasslineStep = {
        doesSlide: PrimitiveField<boolean, "mut">;
        isAccented: PrimitiveField<boolean, "mut">;
        isActive: PrimitiveField<boolean, "mut">;
        key: PrimitiveField<number, "mut">;
        transposeOctaves: PrimitiveField<number, "mut">;
    }
    Index

    Properties

    doesSlide: PrimitiveField<boolean, "mut">

    If this is true, the note for this step slides from the last note played.

    key value
    default false
    isAccented: PrimitiveField<boolean, "mut">

    If this is true, the note for this step is accented, i.e. it is played louder than the other notes.

    key value
    default false
    isActive: PrimitiveField<boolean, "mut">

    Controls whether the note for this step is active. If is_active=false, the note for this step is not played.

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

    MIDI key that specifies the note to be played in combination with transpose. For pattern steps, it covers one octave only.

    key value
    default 36
    range [36, 48]
    transposeOctaves: PrimitiveField<number, "mut">

    In the bassline, each step can be transposed one octave up or down.

    key value
    default 0
    range [-1, 1]