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

CCProgressTimer Loading条

时间:2015-10-05 16:56:39      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:

CCProgressTimer *p_SpTime = CCProgressTimer::create(CCSprite::createWithSpriteFrameName("IM_Progress.png"));

p_SpTime->setType(kCCProgressTimerTypeBar);

 

// 水平 ccp(1,0)右到左  ccp(0,1)左到右   ccp(0, 0) 默认左到右

// 垂直 ccp(1,0)下到上  ccp(0,1)上到下?  ccp(0, 0) 默认下到上

p_SpTime->setMidpoint(ccp(1,0));

 

p_SpTime->setAnchorPoint(ccp(0.0f,0.5f));

p_SpTime->setBarChangeRate(ccp(0, 1));////ccp(1,0) 水平方向 ccp(0, 1)垂直方向  ccp(0,0) 加载满不加载

p_SpTime->setPosition(ccp(size.width / 2, size.height / 2));

p_SpTime->setPercentage(0.0f);//初始加载 100满

addChild(p_SpTime);

CCProgressTimer Loading条

标签:

原文地址:http://www.cnblogs.com/H-K-Home/p/4855896.html

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