Component.rigidbody

var rigidbody : Rigidbody

Description

The Rigidbody attached to this GameObject (null if there is none attached).

JavaScript
    rigidbody.AddForce(1, 1, 1);

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
void Example() {
rigidbody.AddForce(1, 1, 1);
}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

def Example():
rigidbody.AddForce(1, 1, 1)