Description

Clears depth in the drawing order.

interface ClearDepth {
    enabled: boolean;
    uniqueIdentifier: string;
    destroy(): void;
    getRenderOrder(): number;
    getSceneObject(): SceneObject;
    getTransform(): Transform;
    getTypeName(): string;
    isOfType(type): boolean;
    isSame(other): boolean;
    setRenderOrder(value): void;
}

Hierarchy (view full)

Properties

enabled: boolean

Description

If disabled, the Component will stop enacting its behavior.

uniqueIdentifier: string

Methods

  • Returns void

    Description

    Destroys the component.

  • Returns number

    Description

    Returns the order of this Visual in the render queue.

  • Returns string

    Description

    Returns the name of this object's type.

  • 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.

  • Parameters

    • value: number

    Returns void

    Description

    Sets the order of this Visual in the render queue.

Generated using TypeDoc