码迷,mamicode.com
首页 > 其他好文 > 详细

关于Cocos2d-x中监听物体不超越边界的解决方案

时间:2016-08-12 01:24:39      阅读:441      评论:0      收藏:0      [点我收藏+]

标签:

写一个监听器

touchlistener->onTouchMoved = [this](Touch* pTouch, Event*) {

  auto delta = pTouch->getDelta();

  auto hero = (PlaneHero*)getChildByTag(HERO_TAG);

  auto oldpos = hero->getPosition(); //用来重置出界后的位置

  hero->setPosition(Vec2(hero->getPosition().x + delta.x, hero->getPosition().y + delta.y));


  //不能出界
  auto winSize = Director::getInstance()->getWinSize();
  if (hero->getPositionY() < hero->getContentSize().height / 2 || hero->getPositionY() > winSize.height - hero->getContentSize().height / 2
    || hero->getPositionX() < hero->getContentSize().width / 2 || hero->getPositionX() > winSize.width - hero->getContentSize().width / 2)
  {
    hero->setPosition(oldpos);
  }
};
_eventDispatcher->addEventListenerWithSceneGraphPriority(touchlistener, this);  //把监听器添加到事件分发器

关于Cocos2d-x中监听物体不超越边界的解决方案

标签:

原文地址:http://www.cnblogs.com/HangZhe/p/5763142.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!