在刚开始学习cocos2dx的时候,我就特别想知道cocos2d 屏蔽层是怎样创建的,所以就找了相关网页。发现其实也不是很难,所以今天咱就说说cocos2d 创建屏蔽层。
cocos2d 创建屏蔽层,修改优先级,禁止点击的事件向下传递!网上大部的资料都是
CCDirector::sharedDirector()->getTouchDispatcher()->addTargetedDelegate(this,-129,true);
为层添加一个addTargetedDelegate,当不使用这个层时还要在 onExit事件里删除掉。光听起来就觉得麻烦。其实cocos2dx 里的层都有屏蔽功能 。只要修改一下属性就可以了。如下:
- this->setTouchEnabled(true);
- this->setTouchPriority(-129);
- this->setTouchMode(kCCTouchesOneByOne);
- this->registerWithTouchDispatcher();