CCScrollLayer should not respond to touches when not visible · Issue #107 · cocos2d/cocos2d-iphone-extensions · GitHub
More Web Proxy on the site http://driver.im/
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can't think of a reason that a CCScrollLayer should respond to touches for when not visible.
Adding this to the implementation might be a good idea.
-(BOOL) ccTouchBegan:(UITouch *)touch withEvent:(UIEvent *)event
{
if ( !visible_ ) {
return NO;
}
...
Thx!
The text was updated successfully, but these errors were encountered: