CCAnimationにいくつかのpngスプライトを使用します。
self.heroAnim = [CCAnimation animation];
for(int i = 1; i <= count; ++i) {
[self.heroAnim addFrameWithFilename:[NSString stringWithFormat:@"%@_%d_%d.png", _spriteName, currentLevel, i]];
}
self.walkAction = [CCRepeatForever actionWithAction:[CCAnimate actionWithAnimation:self.heroAnim restoreOriginalFrame:NO]];
しかし、今はCCAnimationのスケールを変更する必要があります(約サイズ* 0.75)それを実現するための提案をいただけますか?CCAnimation用に個別のpngファイルがあります。スプライトのファイルのサイズを物理的に変更したくありません。