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

Enables the joint's motor.

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

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

public class Example(MonoBehaviour):

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