HingeJoint.useLimits
var useLimits: bool;
bool useLimits;
useLimits as bool
Description

Enables the joint's limits.

	hingeJoint.useLimits = true;
using UnityEngine;
using System.Collections;

public class Example : MonoBehaviour {
    void Example() {
        hingeJoint.useLimits = true;
    }
}
import UnityEngine
import System.Collections

public class Example(MonoBehaviour):

	def Example() as void:
		hingeJoint.useLimits = true