I'd like to have a lens move up and down on the screen and repeat forever. I have followed the example code in the EffectsAdvanced Demo but I can't get the action to repeat:
id lens = [Lens3D actionWithPosition:ccp(100,0) radius:150 grid:ccg(32,24) duration:10];
id move = [MoveBy actionWithDuration:5 position:ccp(100,320)];
id move_back = [move reverse];
id seq = [Sequence actions: move, move_back, nil];
[[ActionManager sharedManager] addAction:seq target:lens paused:NO];
[self runAction: [RepeatForever actionWithAction:lens]];
Can anybody help?