Legacy Documentation: Version 5.2
LanguageEnglish
  • C#
  • JS

Script language

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

Gyroscope.userAcceleration

Switch to Manual
public Vector3 userAcceleration;

Description

Returns the acceleration that the user is giving to the device.

The significance of this value is that the effect of gravity (which is also detected by the accelerometer) has been removed to leave just the acceleration from the user's movements.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Vector3 forceVec; public Rigidbody rb; void Start() { rb = GetComponent<Rigidbody>(); } void FixedUpdate() { rb.AddForce(Input.gyro.userAcceleration.x * forceVec); } }