We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There are no methods to enable and disable touches.
The text was updated successfully, but these errors were encountered:
I have used the following solution which works fine...
-(void)enableTouch:(BOOL)enable { if(enable) { [[CCTouchDispatcher sharedDispatcher] addStandardDelegate:self priority:0]; } else { [[CCTouchDispatcher sharedDispatcher] removeDelegate:self]; } }
Sorry, something went wrong.
When implementing what praveencastelino suggested, I had to in addition remove all objects from the touches array of the PanZoomLayer:
-(void)enableTouches:(BOOL)enable { [[self touches] removeAllObjects]; if(enable) { [[CCTouchDispatcher sharedDispatcher] addStandardDelegate:self priority:0]; CCLOG(@"LayerPanZoom enabled."); } else { [[CCTouchDispatcher sharedDispatcher] removeDelegate:self]; CCLOG(@"LayerPanZoom disabled."); } }
If I didn't it had lot's of problems when resuming touch handling.
No branches or pull requests
There are no methods to enable and disable touches.
The text was updated successfully, but these errors were encountered: