Legacy Documentation: Version 5.0
Language: English
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

HingeJoint.limits

Switch to Manual
public var limits: JointLimits;

Description

Limit of angular rotation on the hinge joint.

The joint will be limited so that the angle is always between limits.min and limits.max. The joint angle is in degrees relative to the rest angle. The rest angle between the bodies is always zero at the beginning of the simulation.

function Start() {
	// Set the hinge limits for a door.
	var hinge = GetComponent.<HingeJoint>();
	
	var limits = hinge.limits;
	limits.min = 0;
	limits.minBounce = 0;
	limits.max = 90;
	limits.maxBounce = 0;
	hinge.limits = limits;
}