@tawaship/pixim-animate-container - v3.0.0
    Preparing search index...

    Interface IAnimateContainer

    interface IAnimateContainer {
        createjsOverSpeed: boolean;
        createjsSpeed: number;
        addCreatejs(cjs: TCreatejsObject): TCreatejsObject;
        addCreatejsAt(cjs: TCreatejsObject, index: number): TCreatejsObject;
        handleTick(delta: number): void;
        removeCreatejs(cjs: TCreatejsObject): TCreatejsObject;
    }

    Hierarchy

    • Container
      • IAnimateContainer

    Implemented by

    Index
    createjsOverSpeed: boolean

    Whether the playback speed of the createjs instance managed by this container can exceed 1.
    If the playback speed exceeds 1, more than 2 frames may progress in one process, but this may result in unexpected behavior depending on the frame script.

    createjsSpeed: number

    The playback speed multiplier for the createjs instance managed by this container.
    This value multiplied by delta time determines the playback speed.