Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

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.

	// Make hinge limit for a door.
	var limits = hingeJoint.limits;
	limits.min = 0;
	limits.minBounce = 0;
	limits.max = 90;
	limits.maxBounce = 0;
	hingeJoint.limits = limits;