我为我的 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 文件。我不想物理地调整精灵文件的大小。