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

cocos2dX改变锚点位置

时间:2014-11-27 21:58:52      阅读:566      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   os   sp   on   div   log   

改变锚点时,同过计算偏移量修正position从而保持CCNode在屏幕上的位置不变

 

 1 void CLayer::change_anchorpoint(CCNode* node,CCPoint newpt)
 2 {
 3     float dx, dy, diffx, diffy, height, width;
 4     width = node->getContentSize().width;
 5     height = node->getContentSize().height;
 6 
 7     diffx = (newpt.x - node->getAnchorPoint().x)*width;
 8     diffy = (newpt.y - node->getAnchorPoint().y)*height;
 9     node->setPositionX(node->getPositionX() + diffx);
10     node->setPositionY(node->getPositionY() + diffy);
11     node->setAnchorPoint(newpt);
12 }

newpt为新锚点的位置

cocos2dX改变锚点位置

标签:style   blog   io   color   os   sp   on   div   log   

原文地址:http://www.cnblogs.com/codingdiary/p/4127076.html

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