首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
cclayer专题
CCLayer注册lua回调函数setTouchPriority失效
CCLayer注册lua回调函数setTouchPriority失效:方式1、不行touchLayer:setTouchPriority(-5000) touchLayer:registerScriptTouchHandler(touchLayerCallFunc)touchLayer:setTouchEnabled(true)maskLayer:addChild(touchLayer)方式2、可
阅读更多...
在 往CCLayer里面加 Notification通知的时候,一定要加在OnEnter和OnExit里面
在 往CCLayer里面加 Notification通知的时候,一定要加在OnEnter和OnExit里面,不要加在init和 dealloc上面,因为 很多时候CCLayer是通过node方法产生的,在切换layer的时候,dealloc不一定会调用,这样会导致一个layer多次注册一个通知,这样导致,如果发送一个通知,会多次调用通知响应函数,导致问题,切记。 例子代码
阅读更多...