上一帧发生的加速度测量次数。
注意:此 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"); } } }