Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a CCSprite that has CCSprite children, and those CCSprite children have CCSprite children.

The contentSize property doesn't seem to include all children/subchildren, and seems to only work for the base node. I could write a recursive method to traverse a CCSprite for all children/subchildren and calculate a proper boundingbox, but am curious as to if I am missing something and it's possible to get that information without doing so.

I'l be a little surprised if such a method doesn't exist, but I can't seem to find it.

share|improve this question

1 Answer

I was not able to find a solution via an existing method, so I made one :

-(CGRect) getFullBoundingBox:(CCNode*)parentNode
{
    CGRect rectUnion = CGRectZero;
    for(CCNode *node in parentNode.children)
    {
        rectUnion = CGRectUnion(rectUnion,[node boundingBox]);
        rectUnion = CGRectUnion(rectUnion,[self getBoundingBox:node]);
    }

    return rectUnion;
}

This isn't a full solution as I need to account for Anchor Points I believe.

share|improve this answer
boundingBox method already takes anchorPoint into account – LearnCocos2D Dec 29 '12 at 11:16
@LearnCocos2D is there a method that takes into account children and subChildren ? – prototypical Dec 29 '12 at 16:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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