Removed in version 5.0.1p4
Property rigidbody has been deprecated. Use GetComponent<Rigidbody>() instead. (UnityUpgradable)
Suggest a changeSuccess!
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.
CloseSumbission failed
For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
Close Switch to Manual
var rb = GetComponent.<Rigidbody>();
rb.AddForce(1, 1, 1);
using UnityEngine;
using System.Collections;
public class ExampleClass : MonoBehaviour {
public Rigidbody rb = GetComponent<Rigidbody>();
void Example() {
rb.AddForce(1, 1, 1);
}
}