logic-pro-types
    Preparing search index...

    Interface TimingInfo

    interface TimingInfo {
        blockEndBeat: number;
        blockLength: number;
        blockStartBeat: number;
        cycling: boolean;
        leftCycleBeat: number;
        meterDenominator: number;
        meterNumerator: number;
        playing: boolean;
        rightCycleBeat: number;
        tempo: number;
    }
    Index
    blockEndBeat: number

    A floating point number indicates the beat position at the end of the process block.

    blockLength: number

    A floating point number indicates the length of the process block in beats.

    blockStartBeat: number

    A floating point number indicates the beat position at the start of the process block. An alternative is to use the beatPos property. See Use the MIDI event beatPos property.

    cycling: boolean

    Uses Boolean logic where “true” means the host transport is cycling.

    leftCycleBeat: number

    A floating point number indicates the beat position at the start of the cycle range.

    meterDenominator: number

    An integer number indicates the host meter denominator.

    meterNumerator: number

    An integer number indicates the host meter numerator.

    playing: boolean

    Uses Boolean logic where “true” means the host transport is running.

    rightCycleBeat: number

    A floating point number indicates the beat position at the end of the cycle range.

    tempo: number

    A floating point number indicates the host tempo.