Corona sdk 中的振动器
我想在使用 Corona SDK 的应用程序中对加速度计操作使用振动警报。 任何人都可以给我一些线索吗?我尝试在互联网上搜索此内容,但没有找到任何有用的线索。
提前致谢。
快乐编码
I want to use the vibration alert for the accelerometer action in an app using the Corona SDK.
Can any one give me some clue for this. I have tried searching for this in the internet but not found any useful clues.
Thanks in advance.
Happy Coding
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这实际上非常简单,把这一行放进去;
system.vibrate()
这就是所需要的。 (我认为它会在模拟器上发出蜂鸣声,但没有任何视觉效果,因此在测试时将声音调高一点 - 或者更好地构建它。两天前我在测试应用程序中使用了它。)
That's actually super easy, put this line in;
system.vibrate()
That's all it takes. (I think it plays a beep sound on the simulator but nothing visual, so turn your sound up a bit while testing - or better yet build it. I used it in a test app 2 days ago.)