2013年9月19日木曜日

アニメーションの逆再生、順次実行

スプライトアニメーションは逆再生(リバース)したり、順番に実行することができる

 CCAnimation* anime = [[CCAnimationCache sharedAnimationCache] animationByName:@"anime"];
 id action = [CCAnimate actionWithAnimation:anime];
 //リバース
 id back = [action reverse];
 //順番に実行
 CCSequence* seq = [CCSequence actions:action, back, nil];
 [self runAction:seq];

0 件のコメント:

コメントを投稿