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]; |