Version: Unity 6.5 Beta (6000.5)
LanguageEnglish
  • C#

Collision.thisArticulationBody

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 ArticulationBody thisArticulationBody;

Description

The ArticulationBody of the collider of the GameObject which received the Collision event (Read Only).

The ArticulationBody of the collider of the GameObject which received the Collision event. If there is no articulation body attached, this returns null.

using UnityEngine;

public class ExampleScript : MonoBehaviour { // Make all articulation bodies that your GameObject hits move to the left``` void OnCollisionStay(Collision collision) { // Check if the collider your GameObject hits has an articulation body // Then apply the force if (collision.thisArticulationBody) { collision.thisArticulationBody.AddForce(Vector3.left * 15); } } }