如何检查 iOS 设备在 Unity 中是否有振动?
How can I check if an iOS device has the vibration in Unity?
我一直在寻找答案,但到处都找不到。
我基本上是在寻找一种方法来通过代码检测 iOS 设备是否在 Unity 引擎中具有振动硬件。
我知道我可以通过 DeviceGeneration
属性检查设备类型并排除平板电脑或某些 iPod,但我一直在寻找一种更通用、更合乎逻辑的方法来解决这个问题。
有线索吗?
UnityEngine 命名空间包含 SystemInfo.supportsVibration。 属性 return 正确,如果运行 设备支持振动。
我一直在寻找答案,但到处都找不到。
我基本上是在寻找一种方法来通过代码检测 iOS 设备是否在 Unity 引擎中具有振动硬件。
我知道我可以通过 DeviceGeneration
属性检查设备类型并排除平板电脑或某些 iPod,但我一直在寻找一种更通用、更合乎逻辑的方法来解决这个问题。
有线索吗?
UnityEngine 命名空间包含 SystemInfo.supportsVibration。 属性 return 正确,如果运行 设备支持振动。