Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


rigidbody

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

Definition

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

Examples

using UnityEngine;public class Example : MonoBehaviour{ void Start() { gameObject.GetComponent<Rigidbody>().AddForce(0, 0, 1); }}