A cylinder collision shape.

interface CylinderShape {
    axis: Axis;
    length: number;
    radius: number;
    getTypeName(): string;
    isOfType(type: string): boolean;
    isSame(other: ScriptObject): boolean;
}

Hierarchy (view full)

Properties

axis: Axis

Lengthwise local axis along which the cylinder is oriented.

length: number

The length of the cylinder.

radius: number

The radius of the cylinder.

Methods

  • Returns the name of this object's type.

    Returns string

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

    Parameters

    • type: string

    Returns boolean

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

    Parameters

    Returns boolean