Interface SpaceConversionOptions

interface SpaceConversionOptions {
    frameFilter?: ((frame) => boolean);
    inverse?: boolean;
    name?: string;
    objectFilter?: ((object, frame?) => boolean);
    uid?: string;
}

Hierarchy (view full)

Properties

frameFilter?: ((frame) => boolean)

Frame filter to specify what frames are processed by this node

Type declaration

    • (frame): boolean
    • Frame filter to specify what frames are processed by this node

      Parameters

      Returns boolean

inverse?: boolean

Perform an inverse transformation

name?: string

User friendly name of the node Used for querying a node by its name.

objectFilter?: ((object, frame?) => boolean)

Object filter to specify what data object are processed by this node

Type declaration

    • (object, frame?): boolean
    • Object filter to specify what data object are processed by this node

      Parameters

      Returns boolean

uid?: string

Manually set the unique identifier of the node