所以我想知道在cocos2D中是否可以通过动作向精灵的宽度添加动画。例如,我的精灵宽度为100,宽度为200,带动画。(只是宽度没有高度)谢谢:)对不起我的英语我是法国人:/
答案 0 :(得分:0)
CCSprite *spr = nil;//your sprite
CGFloat startingWidth = 100;
CGFloat finalWidth = 200;
id action = [CCPropertyAction actionWithDuration:2 key:@"scaleX" from:1 to:finalWidth / startingWidth];
[spr runAction:action];