HingeJoint.limits Manual     Reference     Scripting  
Scripting > Runtime Classes > HingeJoint
HingeJoint.limits

var limits : JointLimits

Description

The limits of 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.

JavaScript
// 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;

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
public JointLimits limits = hingeJoint.limits;
void Example() {
limits.min = 0;
limits.minBounce = 0;
limits.max = 90;
limits.maxBounce = 0;
hingeJoint.limits = limits;
}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

public limits as JointLimits = hingeJoint.limits

def Example():
limits.min = 0
limits.minBounce = 0
limits.max = 90
limits.maxBounce = 0
hingeJoint.limits = limits

Modifying the limit automatically enables it.