版本: Unity 6 (6000.0)
语言English
  • C#

Input.accelerationEventCount

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法采纳所有提交,但我们确实阅读了用户提出的每个更改建议,并在适用时进行更新。

关闭

提交失败

由于某些原因,您的更改建议无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

public static int accelerationEventCount;

描述

上一帧发生的加速度测量次数。

注意:此 API 是旧版 Input 类的一部分,不建议在新项目中使用。此处提供文档是为了支持使用旧版 Input Manager 和 Input 类的旧版项目。对于新项目,您应该使用更新的 Input System 包。 (了解更多).

using UnityEngine;

public class Example : MonoBehaviour { // Check if we got any acceleration measurements during last frame

void Update() { if (Input.accelerationEventCount > 0) { print("We got new acceleration measurements"); } } }