I'd like to know how to increase the width of a sprite through an animation.
CCSprite *waterImage = [CCSprite spriteWithFile:@"water.png"];
waterImage.position = ccp(10,20);
waterImage.scaleY = 1.0;//6.5;
[self addChild:waterImage];
I want to scale the image of the sprite on the Y axis through an animation. Please, if you have any tutorials, then share them with me.