2

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

4

1 回答 1

2

您可以尝试更改scale用于运行此动画的精灵的属性。Sprite 应该自动调整动画的所有帧的大小。

于 2012-09-13T14:05:35.067 回答