Version: 2020.3
언어: 한국어

Gyroscope.userAcceleration

매뉴얼로 전환
public Vector3 userAcceleration ;

설명

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); } }