在项目代码中加载cocostudio导出的动画并循环播放

前端之家收集整理的这篇文章主要介绍了在项目代码中加载cocostudio导出的动画并循环播放前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。



需要在代码中引入#include "cocostudio/CocoStudio.h"

using namespace cocostudio;


ArmatureDataManager::getInstance()->addArmatureFileInfo("fishes/blowFish/Blowfish.ExportJson");

Armature* armature = Armature::create("Blowfish");


armature->setTag(10010);


armature->setPosition(350,350);

//播放动画
armature->getAnimation()->playByIndex(0);

this->addChild(armature);

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

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