i am trying collision detection without using box2d so i used a inbuilt function CCRectIntersectsRect() using this function when i decrement the count it gets reduced to negative values in a single collision. (when the ball touches hero and when the ball crosses hero.)
all i want is to schedule it in someway so that the count-- gets called once only.
for complete source code how to use box2d for collision detection in cocos2d-x
CCRect bom= ball->boundingBox();
CCRect gon= hero->boundingBox();
if(CCRect::CCRectIntersectsRect(bom,gon))
{
count--;
}