- (BOOL) ccTouchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
CocosNode* spHead = [self getChildByTag:tagHead];
CocosNode* spBody = [self getChildByTag:tagBody];
[spHead runAction:fadeOutAction];
[spBody runAction:fadeOutAction];
}
作为上面的代码,我希望精灵同时做一些动作,第二个完全正常,但第一个没有。
需要帮助。任何人都可以帮助我?
答案 0 :(得分:0)
你的fadeOutAction不能处理重入?
答案 1 :(得分:0)
我知道
- (BOOL)ccTouchesEnded:(NSSet *)触及withEvent:(UIEvent )事件 { CocosNode spHead = [self getChildByTag:tagHead]; CocosNode * spBody = [self getChildByTag:tagBody];
[spHead runAction:fadeOutAction];
[spBody runAction:[[fadeOutAction copy] autorelease]];
}
然后确定