Cocos2d android 禁用触摸
我想在 Cocos2d 屏幕中禁用触摸。我想要触摸禁用 4-5 秒。任何人都可以帮助我。 谢谢
i want to disable touch in Cocos2d screen. i want touch disable for 4-5 second.any one help me.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用布尔值来打开/关闭触摸代码。
在其他地方,暂时禁用触摸:
我将重新启用触摸由您决定。
Use a bool value to toggle your touch code on/off.
Somewhere else, disable touch temporarily:
I leave re-enabling the touches up to you.
定义一次变量
当你想禁用触摸屏时写下面的代码
现在写下面的方法
Define one time variable
Write below code when you want to disable touch screen
Now write below method
您可以禁用触摸并调用时间为 5 秒的计划方法
,并在 enableTouchAfter5sec 方法中启用触摸
You can disable touch and call a schedule method with time 5 sec as
and in enableTouchAfter5sec method enable the touch
您还可以设置自定义计时器:
并在需要时倒计时:
Also you can set a custom timer:
and count down when you need it: