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.

Rigidbody.useGravity

Switch to Manual
public var useGravity: bool;

Description

Controls whether gravity affects this rigidbody.

If set to false the rigidbody will behave as in outer space.

	// Disables gravity on all rigid bodies entering this collider.
	function OnTriggerEnter (other : Collider) {
		if (other.attachedRigidbody) {
			other.attachedRigidbody.useGravity = false;
		}
	}
	// Turn this collider into a trigger on startup
	collider.isTrigger = true;