The Rigidbody attached to this GameObject (Read Only). (null if there is none attached).
var other : GameObject; var rb = other.GetComponent.<Rigidbody>(); rb.AddForce(1,1,1);
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { public GameObject other; public Rigidbody rb = other.GetComponent<Rigidbody>(); void Example() { rb.AddForce(1, 1, 1); } }