Scrawl-canvas API
    Preparing search index...

    Interface ActionInstance

    interface ActionInstance {
        action?: DefaultInputFunction;
        actionPacket: (item: string, override?: CommonObjectInput) => any;
        addToTargets: (item: any) => TweenAnimationInstance;
        addToTicker: (item: string) => TweenAnimationInstance;
        checkForTarget: (item: string) => TweenTargetInstance[];
        clone: (item?: ActionFactoryInputs) => ActionInstance;
        complete: () => void;
        delta?: ActionFactoryDeltaInputs;
        get: (item: string) => any;
        halt: () => void;
        importPacket: (
            item: string | string[],
            override?: CommonObjectInput,
        ) => any;
        isRunning: () => void;
        kill: (item?: any) => void;
        name?: string;
        order?: number;
        removeFromTargets: (item: any) => TweenAnimationInstance;
        removeFromTicker: (item?: string) => TweenAnimationInstance;
        reset: () => void;
        resume: () => void;
        reverse: () => void;
        reverseOnCycleEnd?: boolean;
        revert?: DefaultInputFunction;
        run: () => void;
        saveAsPacket: (item?: boolean | ActionSaveInputs) => string;
        set: (item?: ActionFactoryInputs) => ActionInstance;
        setDelta: (item?: ActionFactoryDeltaInputs) => ActionInstance;
        setTargets: (item: any) => TweenAnimationInstance;
        targets?: TweenTargetInstance | TweenTargetInstance[];
        ticker?: string | TickerInstance;
        time?: StringOrNumberInput;
    }

    Hierarchy (View Summary)

    Index

    Properties

    actionPacket: (item: string, override?: CommonObjectInput) => any
    addToTargets: (item: any) => TweenAnimationInstance
    addToTicker: (item: string) => TweenAnimationInstance
    checkForTarget: (item: string) => TweenTargetInstance[]
    complete: () => void
    get: (item: string) => any
    halt: () => void
    importPacket: (item: string | string[], override?: CommonObjectInput) => any
    isRunning: () => void
    kill: (item?: any) => void
    name?: string
    order?: number
    removeFromTargets: (item: any) => TweenAnimationInstance
    removeFromTicker: (item?: string) => TweenAnimationInstance
    reset: () => void
    resume: () => void
    reverse: () => void
    reverseOnCycleEnd?: boolean
    run: () => void
    saveAsPacket: (item?: boolean | ActionSaveInputs) => string
    setTargets: (item: any) => TweenAnimationInstance
    ticker?: string | TickerInstance