首页 > 其他 > 详细

cocos3 单击

时间:2014-12-09 17:31:49      阅读:245      评论:0      收藏:0      [点我收藏+]

// on "init" you need to initialize your instance
bool HelloWorld::init()
{
    //////////////////////////////
    // 1. super init first
    if ( !Layer::init() )
    {
        return false;
    }
    
    Size visibleSize = Director::getInstance()->getVisibleSize();
    Vec2 origin = Director::getInstance()->getVisibleOrigin();

    LabelTTF* label=LabelTTF::create("show","Courier",50);
    label->setPosition(100,100);
    addChild(label);

    EventListenerTouchOneByOne* listener=EventListenerTouchOneByOne::
        create();
    listener->onTouchBegan=[label](Touch *t,Event *e)
    {
        if(label->getBoundingBox().containsPoint(t->getLocation()))
        {
            log("111111111111111");
        }
        return true;
    };

    listener->onTouchMoved = [](Touch* t,Event *e){
        log("onTouchMoved");
    };
    
    listener->onTouchEnded = [](Touch *t,Event *e){
        log("onTouchEnd");
    };

    Director::getInstance()->getEventDispatcher()->
        addEventListenerWithSceneGraphPriority(listener,label);

    return true;
}

 

cocos3 单击

原文:http://www.cnblogs.com/yufenghou/p/4153388.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!