i want to disable touch in Cocos2d screen. i want touch disable for 4-5 second.any one help me. thanks

link|improve this question

43% accept rate
feedback

2 Answers

Use a bool value to toggle your touch code on/off.

if (touchEnabled)
{
  // do touch code
}
else
{
  // not …
}

Somewhere else, disable touch temporarily:

// accept no touches from now on
touchEnabled = false;

I leave re-enabling the touches up to you.

link|improve this answer
feedback

Also you can set a custom timer:

static Integer time = 100;

and count down when you need it:

time--;
...
if (time <= 0) {
    setTouchEnabled = false;
//you can also reset time here: time = 100;
} else {
    setTouchEnabled = true;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.