Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

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

Physics.gravity

static var gravity: Vector3;
static Vector3 gravity;
static gravity as Vector3

Description

The gravity applied to all rigid bodies in the scene.

Gravity can be turned off for an individual rigidbody using its useGravity property.

	Physics.gravity = Vector3(0, -1.0, 0);
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    void Example() {
        Physics.gravity = new Vector3(0, -1.0F, 0);
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	def Example() as void:
		Physics.gravity = Vector3(0, -1.0F, 0)