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

    Class CreatejsMovieClip

    Hierarchy (View Summary)

    Implements

    Index
    _fps: number
    _listenFrameEventsBase: IAnimateFrameEventOption
    _off?: boolean
    alpha: number
    children: ICreatejsChildNode[]
    currentFrame: number
    labels: ICreatejsLabel[]
    loop: boolean
    nominalBounds: ICreatejsNominalBounds
    regX: number
    regY: number
    rotation: number
    scaleX: number
    scaleY: number
    skewX: number
    skewY: number
    startPosition: number
    totalFrames: number
    visible: boolean
    x: number
    y: number
    • Advances the timeline (delegated to the original createjs implementation) and dispatches the custom frame events right after the frame changes, before the children are ticked — the same timing the previous self-managed walk provided.

      framerate is fixed at -1 and the driver never passes a delta, so one call always advances exactly one frame (determinism lives with the caller).

      Parameters

      • Optionaltime: number

      Returns void

    • Recursive _updateState walk: the substitute for the draw phase of the original pipeline (MovieClip.draw -> _updateState), which is what resolves SYNCHED / SINGLE_FRAME / first-render state — advance() only moves INDEPENDENT clips. Runs once per frame after _tick, and once when a root is registered (frame-0 seating). Walks the live children array in reverse, matching the traversal discipline of the original Container._tick.

      Returns void