Scrawl-canvas API
    Preparing search index...

    Interface LoomFactoryFunctions

    interface LoomFactoryFunctions {
        actionPacket: (item: string, override?: CommonObjectInput) => any;
        checkHit: (tests: HitTests) => boolean | HitOutput;
        clickAnchor?: () => void;
        clickButton?: () => void;
        clone: (item?: LoomFactoryInputs) => LoomInstance;
        get: (item: string) => any;
        getBoundingBox: () => number[];
        importPacket: (
            item: string | string[],
            override?: CommonObjectInput,
        ) => any;
        kill: (item?: any) => void;
        reverseByDelta: () => ArtefactInstance;
        saveAsPacket: (item?: boolean | LoomSaveInputs) => string;
        set: (item?: LoomFactoryInputs) => LoomInstance;
        setDelta: (item?: LoomFactoryDeltaInputs) => LoomInstance;
        setDeltaValues: (item?: CommonObjectInput) => ArtefactInstance;
        simpleStamp: (host: CellInstance, items?: LoomFactoryInputs) => void;
        update: () => void;
        updateByDelta: () => ArtefactInstance;
    }

    Hierarchy (View Summary)

    Index

    Properties

    actionPacket: (item: string, override?: CommonObjectInput) => any
    checkHit: (tests: HitTests) => boolean | HitOutput
    clickAnchor?: () => void
    clickButton?: () => void
    clone: (item?: LoomFactoryInputs) => LoomInstance
    get: (item: string) => any
    getBoundingBox: () => number[]
    importPacket: (item: string | string[], override?: CommonObjectInput) => any
    kill: (item?: any) => void
    reverseByDelta: () => ArtefactInstance
    saveAsPacket: (item?: boolean | LoomSaveInputs) => string
    setDelta: (item?: LoomFactoryDeltaInputs) => LoomInstance
    setDeltaValues: (item?: CommonObjectInput) => ArtefactInstance
    simpleStamp: (host: CellInstance, items?: LoomFactoryInputs) => void
    update: () => void
    updateByDelta: () => ArtefactInstance