A type of constraint that only allows rotation. See also: ConstraintComponent.

// Create a constraint on an object
var pointConstraint = hingeObj.createComponent("Physics.ConstraintComponent");

// Set up options on that constraint
pointConstraint.debugDrawEnabled = true;
pointConstraint.constraint = Physics.Constraint.create(Physics.ConstraintType.Point);
interface PointConstraint {
    constraintType: ConstraintType;
    getTypeName(): string;
    isOfType(type: string): boolean;
    isSame(other: ScriptObject): boolean;
}

Hierarchy (view full)

Properties

constraintType: ConstraintType

The type of constraint that is applied.

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