写个关于使用cocostudio Armature实现动画自由切换的小demo

这是一个关于使用cocostudio实现动画自由切换的小demo

 

auto  sprite =Sprite::create("background.png");
	sprite->setAnchorPoint(Point(0,0));
	this->addChild(sprite);

	ArmatureDataManager::getInstance()->addArmatureFileInfo("catArmature/catArmature.ExportJson");
	auto  _cat =this->insCatAnimation();
	this->addChild(_cat, 1, CATTAG);


	auto  label=LabelTTF::create("Let cat move","Arial",26);
	auto  item = MenuItemLabel::create(label,CC_CALLBACK_0(HelloWorld::catMove, this));

	auto  label2 = LabelTTF::create("Let cat pase", "Arial", 26);
	auto  item2 = MenuItemLabel::create(label2, CC_CALLBACK_0(HelloWorld::catPase, this));

	auto  menu =Menu::create(item,item2,NULL);
	menu->alignItemsVertically();
	menu->setPosition(Point(400, 400));
	this->addChild(menu);

    return true;
}
cocostudio::Armature*  HelloWorld::insCatAnimation()
{
	Size visibleSize = Director::getInstance()->getVisibleSize();
	Point origin = Director::getInstance()->getVisibleOrigin();
	auto  cat = Armature::create("catArmature");
	cat->setPosition(Point(visibleSize.width * 0.6 + 250, visibleSize.height * 0.5 + 20));
	cat->getAnimation()->playWithIndex(0);

	return  cat;	
}


void  HelloWorld::catMove()
{
	auto cat=(Armature*)this->getChildByTag(CATTAG);
	cat->getAnimation()->playWithIndex(0);
	auto catM =MoveTo::create(24.0f,Point(150,cat->getPosition().y));
	cat->runAction(catM);
}

void HelloWorld::catPase()
{
	auto cat =(Armature*)this->getChildByTag(CATTAG);
	cat->stopAllActions();
	cat->getAnimation()->playWithIndex(1);//获取你需要的动画
}


 

这里是源码和资源地址:

http://download.csdn.net/detail/u010296979/7288227

 

 

 

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值