Description

Provider for full Body Mesh render object.

interface BodyRenderObjectProvider {
    bodyGeometryEnabled: boolean;
    bodyIndex: number;
    headGeometryEnabled: boolean;
    leftHandGeometryEnabled: boolean;
    rightHandGeometryEnabled: boolean;
    getLoadStatus(): LoadStatus;
    getTypeName(): string;
    isOfType(type): boolean;
    isSame(other): boolean;
}

Hierarchy (view full)

Properties

bodyGeometryEnabled: boolean

Description

Enable main Body Mesh geometry.

bodyIndex: number

Description

Index of body in scene to track.

headGeometryEnabled: boolean

Description

Enable head mesh.

leftHandGeometryEnabled: boolean

Description

Enable left hand mesh.

rightHandGeometryEnabled: boolean

Description

Enable right hand mesh.

Methods

  • Parameters

    • type: string

    Returns boolean

    Description

    Returns true if the object matches or derives from the passed in type.

  • Parameters

    Returns boolean

    Description

    Returns true if this object is the same as other. Useful for checking if two references point to the same thing.

Generated using TypeDoc