# hingeJoint

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

## Definition

* **Type:** Property
* **Namespace:** [UnityEngine](/engine/6000.0/script-reference/unityengine.md)
* **Assembly:** UnityEngine.CoreModule

> **Warning:**
>
> **Removed.** Property hingeJoint has been deprecated. Use GetComponent\\\<HingeJoint\\>() instead.

```csharp
public Component hingeJoint { get; }
```

### Examples

```csharp
using UnityEngine;

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