Iphone 如何在cocos2d中执行与此核心动画缩放相同的缩放调用?

Iphone 如何在cocos2d中执行与此核心动画缩放相同的缩放调用?,iphone,core-animation,cocos2d-iphone,Iphone,Core Animation,Cocos2d Iphone,我正在寻找做类似调用的东西,但是使用cocos2d。。。想法是放大精灵,然后将其淡出。。。以下是核心动画中的一个类似调用: [UIView beginAnimations:nil context:nil]; [UIView setAnimationDuration:ANIM_NORMAL]; someView.alpha = 0.0; someView.transform = CGAffineTransformMakeScale (3.0, 3.0); [UIView commitAnimati

我正在寻找做类似调用的东西,但是使用cocos2d。。。想法是放大精灵,然后将其淡出。。。以下是核心动画中的一个类似调用:

[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:ANIM_NORMAL];
someView.alpha = 0.0;
someView.transform = CGAffineTransformMakeScale (3.0, 3.0);
[UIView commitAnimations];
看看这里也会有很多所谓的“行动”:

id enlargeAndFade = [Sequence actions: [ScaleTo...], [FadeOut....], nil];

[sprite runAction:enlargeAndFade];