cocos2d-x里得到当前动画播放帧数的方法

前端之家收集整理的这篇文章主要介绍了cocos2d-x里得到当前动画播放帧数的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

没有现成的,可以修改代码得到。在CCActionInterval.h里的Animate类里添加如下方法

class CC_DLL Animate : public ActionInterval
{
public:

int GetCurFrameIndex()
{
int nIndex = _nextFrame - 1;
if (nIndex < 0)
{
nIndex = _animation->getFrames().size()-1;
}
return nIndex;
}

}

在游戏代码里通过sprite的getActionByTag()得到Animate,然后调用方法即可。


原文链接:https://www.f2er.com/cocos2dx/344867.html

猜你在找的Cocos2d-x相关文章