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

cocos2dx-3.15 ProgressTimer 注意

时间:2017-09-05 20:51:41      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:函数   timer   int()   其他   date   percent   3.1   参数   不用   

ProgressTimer* timer = ProgressTimer::create(Sprite::createWithSpriteFrameName(""));   //创建对象

timer->setType(cocos2d::ProgressTimer::Type::BAR);  // 设置类型

_progressTime->setMidpoint(Vec2(1,0));    // 设置变化位置类似于锚点,Vec2(0,0) 左下角  Vec2(1,1)右上角 设置(1,0)表示从右向左变化

_progressTime->setBarChangeRate(Vec2(1,0));  // 设置变化方向: 不用变化的方向,则设置该方向为0,否则设置为1。

_progressTime->setPercentage(50);    // 设置进度条的进度 注意:不能写在 setMidpoint() 和 setBarChangeRate() 函数上面否则无效

技术分享

9设置之后就会走updateProgress() updateProgress 内部就是设置进度的方法,会调用上面设置的进度条的其他参数。

 

cocos2dx-3.15 ProgressTimer 注意

标签:函数   timer   int()   其他   date   percent   3.1   参数   不用   

原文地址:http://www.cnblogs.com/97888l/p/7481733.html

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