Repeat animations in Cocos2D in iphone.

By | December 19, 2010

You can create endlessly looping animations this way.
This code lets a node rotate forever like an endlessly spinning wheel:

CCRotateBy* rotateBy = [CCRotateBy actionWithDuration:2 angle:360];
CCRepeatForever* repeat = [CCRepeatForever actionWithAction:rotateBy];
[myNode runAction:repeat];

Leave a Reply

Your email address will not be published. Required fields are marked *