Cocos2dx:事件分发拦截

前端之家收集整理的这篇文章主要介绍了Cocos2dx:事件分发拦截前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在加载cocostudio资源时,加载的节点在

rootNode->setVisible(true);

后使用拦截事件;



  1. //加载Cocos Studio编辑好的资源:卡片dialog
  2. auto rootNode = CSLoader::createNode("cardDialog.csb");
  3. this->addChild(rootNode);
  4. rootNode->setVisible(false);

  1. rootNode->setVisible(true);
  1. //拦截事件
  2. auto callback = [](Touch *,Event *)
  3. {
  4. return true;
  5. };
  6. auto touchListener = EventListenerTouchOneByOne::create();
  7. touchListener->onTouchBegan = callback;
  8. touchListener->setSwallowTouches(true); //拦截本层事件
  9. // 这里的触摸优先级设置为-128,与Menu同级,保证了屏蔽下方的触摸
  10. _eventDispatcher->setPriority(touchListener,-128);
  11. _eventDispatcher->addEventListenerWithSceneGraPHPriority(touchListener,rootNode);

  1. touchListener->setSwallowTouches(false); //释放拦截本层事件
  2.  
  1. _eventDispatcherNode属性,通过它管理当前节点(如 场景、层、精灵等)的所有事件分发情况。但是它本身是一个单例模式的引用,在CCNode构造函数中,通过Director::getInstance()->getEventDispatcher()获取,有了这个属性,我们能更加方便的调用。</span>

猜你在找的Cocos2d-x相关文章