读取cocoStudio中的Animation

前端之家收集整理的这篇文章主要介绍了读取cocoStudio中的Animation前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
读取序列帧的过程:
ArmatureDataManager::getInstance()->addArmatureFileInfo("AnimationTest/AnimationTest.ExportJson");
	Armature* arm = Armature::create("AnimationTest");
	
	arm->setPosition(200,200);
	this->addChild(arm);

	arm->getAnimation()->setMovementEventCallFunc([=](Armature* arm,MovementEventType type,std::string id){
		if (type == MovementEventType::START)
		{
			CCLOG("START:%s-------",id.c_str());
			
		}
		else if (type == MovementEventType::COMPLETE)
		{
			CCLOG("COMPLETE:%s------------",id.c_str());
			arm->getAnimation()->play("jump");
		}

	});
	arm->getAnimation()->play("Animation1");

读取骨骼动画:


ArmatureDataManager::getInstance()->addArmatureFileInfo("Export/Wolfs/Wolfs.ExportJson");
	Armature* arm = Armature::create("Wolfs");
	arm->setPosition(200,200);
	this->addChild(arm);
	arm->getAnimation()->setFrameEventCallFunc([=](Bone *bone,const std::string& frameEventName,int originFrameIndex,int currentFrameIndex){
		CCLOG("bone:%s,EventName:%s",bone->getName().c_str(),frameEventName.c_str());
	});
	arm->getAnimation()->play("Animation2");

读取UI:


	auto uiLayer = GUIReader::getInstance()->widgetFromJsonFile("StartUI/StartUI.ExportJson");
	this->addChild(uiLayer);

ui中的层级关系使用getChildByName实现。

如下实现:

LoadingBar* loadb = (LoadingBar*)uicheb->getChildByName("Image_4")->getChildByName("ProgressBar_6");

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

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