Hi!
I have a problem integrating scoreloop OR openfeint to my game, apparently when calling runScene using fastdirector, most elements in those API don't receive touches...
I tracked the bug to this:
FastDirector has this: and normal director does not...
- (void) startAnimation
{
// XXX:
// XXX: release autorelease objects created
// XXX: between "use fast director" and "runWithScene"
// XXX:
[autoreleasePool release];
autoreleasePool = nil;
}
I can not switch to normal director becasue my game stops working smoothly, so i was wondering what would happen if i removed those lines from fastdirector... what would i have to do so nothing breaks?
Ah i am using cocos2d v0.8 and the latest build of scoreloop and openfeint.