Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Collision.rigidbody

public var rigidbody: Rigidbody;

Description

The Rigidbody we hit (Read Only). This is null if the object we hit is a collider with no rigidbody attached.

	// Make all rigidbodies we touch fly upwards
	function OnCollisionStay(collision : Collision) {
		// Check if the collider we hit has a rigidbody
		// Then apply the force
		if (collision.rigidbody) {
			collision.rigidbody.AddForce (Vector3.up * 15);
		}
	}