Manual     Reference     Scripting  
  
Scripting > Runtime Classes > Component   

Component.hingeJoint  

var hingeJoint : HingeJoint

Description

The HingeJoint attached to this GameObject (null if there is none attached).

JavaScript
hingeJoint.motor.targetVelocity = 5;

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
void Example() {
hingeJoint.motor.targetVelocity = 5;
}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

def Example():
hingeJoint.motor.targetVelocity = 5