Unity实现苹果手机Taptic震动
程序员文章站
2022-06-14 15:30:24
本文实例为大家分享了unity苹果手机taptic震动的具体代码,供大家参考,具体内容如下
文件:ios震动.zip
将上方文件解压之后将multihaptic.mm的文件放到as...
本文实例为大家分享了unity苹果手机taptic震动的具体代码,供大家参考,具体内容如下
文件:ios震动.zip
将上方文件解压之后将multihaptic.mm的文件放到assets/plugins/ios目录下,multihaptic.cs文件不用挂载到游戏物体上,在需要的时候调用里面的三个静态方法即可
附上multihaptic.cs的代码:
using unityengine; using system.runtime.interopservices; public class multihaptic { [dllimport("__internal")] static extern void _hapticmedium(); [dllimport("__internal")] static extern void _hapticlight(); [dllimport("__internal")] static extern void _hapticheavy(); public static void hapticlight() { if (application.platform == runtimeplatform.iphoneplayer) if (playerprefs.getint("taptic", 1) == 1) { _hapticlight(); } } public static void hapticmedium() { if (application.platform == runtimeplatform.iphoneplayer) if (playerprefs.getint("taptic", 1) == 1) { _hapticmedium(); } } public static void hapticheavy() { if (application.platform == runtimeplatform.iphoneplayer) if (playerprefs.getint("taptic", 1) == 1) { _hapticheavy(); } } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。