CCAramature的问题(cocos2d-x 2.2.5)

CCArmature *p1 = CCArmature::create();
addChild(p1);
启用定时器,5秒后执行
p1->init(“b”);
p1->getAnimation()->playerWithIndex(0);
这个没有问题,动画正常播放,
但是再通过定时器,8秒后执行以下代码会出现当机
p1->getAnimation()->stop();
p1->init(“c”);
p1->getAnimation()->playerWithIndex(0);

我就想确认一定,CCArmature 到底支持 不创建对象而动态修改动画吗?

自己顶一下吧,

同样的功能,用cocos-x3.2 能正常运行,可是用2.2.5就是不行啊,这2.2.5到底还会不会更新呢