zoukankan      html  css  js  c++  java
  • Cocos2d-x设置吞没单击属性来避免精灵重叠被点击后的事件续传

    代码如下:

    Size visibleSize = Director::getInstance()->getVisibleSize();
    
        /* create two sprites which have overlapped parts */
        Sprite* sp1 = Sprite::create("sprite1.png");
        sp1->setPosition(Point(visibleSize.width * 0.5f, visibleSize.height * 0.5f));
        this->addChild(sp1);
    
        Sprite* sp2 = Sprite::create("sprite2.png");
        sp2->setPosition(Point(visibleSize.width * 0.5f, visibleSize.height * 0.5f));
        this->addChild(sp2);
    
        auto listener = EventListenerTouchOneByOne::create();
        listener->setSwallowTouches(true);
        listener->onTouchBegan = [](Touch* touch, Event* event){
            /* get the target bind by the touch event listener */
            auto target = static_cast<Sprite*>(event->getCurrentTarget());
    
            Point pos = Director::getInstance()->convertToGL(touch->getLocationInView());
    
            /* judge if the touch position inside the bounding box of sprite */
            if (target->getBoundingBox().containsPoint(pos))
            {
                /* set the opacity of the sprite */
                target->setOpacity(100);
    
                return true;
            }
            
            return false;
        };
        listener->onTouchEnded = [](Touch* touch, Event* event){
            /* restore the opacity of the sprite */
            auto target = static_cast<Sprite*>(event->getCurrentTarget());
            target->setOpacity(255);
        };
      
        /* register the touch event listener by event dispatcher to bind sprite1 */
        _eventDispatcher->addEventListenerWithSceneGraphPriority(listener, sp1);
    
        /* register the touch event listener by event dispatcher to bind sprite2 */
        _eventDispatcher->addEventListenerWithSceneGraphPriority(listener->clone(), sp2);
  • 相关阅读:
    Python进阶文档
    Docker 启动 RabbitMQ
    Lending Club 贷款业务信用评分卡建模
    Lending Club 公司2007-2018贷款业务好坏帐分析
    Lending Club 公司2007-2018贷款业务初步分析
    电子商务网站用户行为分析及服务推荐
    机器学习实战总结
    机器学习实战 11- SVD
    机器学习实战 10-PCA
    机器学习实战 9-FP-growth算法
  • 原文地址:https://www.cnblogs.com/davidgu/p/4515432.html
Copyright © 2011-2022 走看看