rigidbody
The Rigidbody attached to this GameObject. (Null if there is none attached).
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public Component rigidbody { get; }
Examples
using UnityEngine;public class Example : MonoBehaviour{ void Start() { GetComponent<Rigidbody>().AddForce(1, 1, 1); }}