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

    Type Alias MachinisteStep

    key value
    type object

    The step information for a single step. Each step has a modulation depth and a boolean flag indicating whether the step is on or off. The modulation depth causes the note played for that step to be modulated by the modulation amount assigned to every parameter for that channel below.

    type MachinisteStep = {
        isActive: PrimitiveField<boolean, "mut">;
        modulationDepth: PrimitiveField<number, "mut">;
    }
    Index

    Properties

    isActive: PrimitiveField<boolean, "mut">

    Whether the step is active. If is_active=false, the step is not played.

    key value
    default false
    modulationDepth: PrimitiveField<number, "mut">

    The modulation depth for the step.

    key value
    default 1
    range [0, 1]