@ableton-extensions/sdk
    Preparing search index...

    Interface ClipLoopSettings

    Initial region and loop settings for a new audio clip. These values become Clip.startMarker, Clip.endMarker, Clip.loopStart, and Clip.loopEnd on the created clip.

    The API enforces:

    • startMarker ≤ endMarker.
    • The loop must be at least 0.25 beats (one 16th note) long.
    • When looping is false: loopStart === startMarker and loopEnd === endMarker.
    • When isWarped is false: positions must be non-negative and looping must be false.
    interface ClipLoopSettings {
        endMarker: number;
        loopEnd: number;
        looping: boolean;
        loopStart: number;
        startMarker: number;
    }
    Index

    Properties

    endMarker: number

    In beats.

    loopEnd: number

    In beats.

    looping: boolean
    loopStart: number

    In beats.

    startMarker: number

    In beats.