Legacy Documentation: Version 2017.2 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

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

Gyroscope.gravity

public Vector3 gravity;

Description

Returns the gravity acceleration vector expressed in the device's reference frame.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public float movementScale; void Update() { Vector3 pos = transform.position; pos.y = Vector3.Dot(Input.gyro.gravity, Vector3.up) * movementScale; transform.position = pos; } }

Did you find this page useful? Please give it a rating: