meo-canvas - v8.1.5
    Preparing search index...

    Interface AnimationExportOptions

    Encode options that only mean something for an animation.

    The renderer raises a TypeError when any of these reaches a format that cannot animate, rather than dropping it silently. Splitting the export signatures by format turns that runtime failure into a compile error.

    interface AnimationExportOptions {
        fps?: number;
        frameDelays?: number[];
        loop?: number;
    }
    Index
    fps?: number

    Frames per second; one page is one frame. Defaults to 30.

    frameDelays?: number[]

    Per-frame durations in milliseconds, one per page. Overrides AnimationExportOptions.fps.

    loop?: number

    Times the animation repeats. 0 — the default — loops forever.