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

    Type Alias RasselbockStep

    key value
    type object

    Holds the state for an individual pattern step. Visually/acoustically, a step can have more than 1 1/64th of a duration. Steps like these are represented as multiple consecutive steps that each have is_on=true and is_end=false. Multiple consecutive steps with is_on=true and is_end=true result in individual consecutive 1/64th-long steps.

    type RasselbockStep = {
        isEnd: PrimitiveField<boolean, "mut">;
        isOn: PrimitiveField<boolean, "mut">;
    }
    Index

    Properties

    Properties

    isEnd: PrimitiveField<boolean, "mut">

    whether the step is an end of a region (multiple steps connected)

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

    whether the step is on.

    key value
    default false