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

Gyroscope.userAcceleration

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

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;

public class Example : MonoBehaviour { Vector3 forceVec; Rigidbody rb;

void Start() { rb = GetComponent<Rigidbody>(); }

void FixedUpdate() { // Apply forces to an object to match the side-to-side acceleration // the user is giving to the device. rb.AddForce(Input.gyro.userAcceleration.x * forceVec); } }

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