Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


hingeJoint

The HingeJoint attached to this GameObject. (Null if there is none attached).
Read time 1 minuteLast updated 2 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
Warning
Removed. Property hingeJoint has been deprecated. Use GetComponent\<HingeJoint\>() instead.
public Component hingeJoint { get; }

Examples

using UnityEngine;public class Example : MonoBehaviour{ void Start() { print(GetComponent<HingeJoint>().motor.targetVelocity); }}