Version: 2017.4
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Joint2D.attachedRigidbody

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public var attachedRigidbody: Rigidbody2D;
public Rigidbody2D attachedRigidbody;

Description

The Rigidbody2D attached to the Joint2D.

Joint2D are automatically attached to a Rigidbody2D on the same GameObject as the Joint2D.

See Also: Rigidbody2D.

no example available in JavaScript
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Vector2 force = Vector2.up;

void Start() { // Apply a force to the rigidbody attached to the joint. GetComponent<Joint2D>().attachedRigidbody.AddForce(force); } }