I have a background that extends CCSprite from the cocos2d framework. And I have added this sprite to the gamelayer. Now in this background class I try to add other CCSprites named Star like so:

//create the stars
    stars = [[CCArray alloc] init];
    for (int i = 0; i < 10; i++) {
        Star* star = [[Star alloc ] initWithFile:@"star-hd.png"];
        CGSize screensize = [[CCDirector sharedDirector] winSize];
        //CCLOG(@"screensize: %f, %f", screensize.width, screensize.height);
        CGPoint newstarlocation;
        newstarlocation.x = CCRANDOM_0_1() * screensize.width;
        newstarlocation.y = CCRANDOM_0_1() * screensize.height;
        star.position = newstarlocation;
        [self addChild:star z:i];
        [stars addObject:star];
    }

but the stars won't show. I tried several things and the only thing that seems to work is when I add the stars on the gamelayer instead of the background. but that is not what I want.

is it not allowed in cocos2d to nest sprites? and if it is allowed, how do I nest sprites?

link|improve this question

Code seems correct, try using a different image (star.png) and fixed positions (position of stars are relative (ie offsets) to the position of the parent (the background sprite). Finally, what's the point in adding the stars to their own array? After all, you can just use the children array where you add the stars to. If necessary give them all the same tag to differentiate between other nodes. – LearnCocos2D Feb 13 at 20:14
feedback

1 Answer

I don't see why you would want to nest sprites, and not only that, would it be very efficient. Write a Star class that contains the sprite, and the child sprites.

It is allowing you to do it because cocos2d loves CCNode, almost everything derives from it. That doesn't mean that CCSprite handles drawing their children. Both the CCLayer and CCSprite can have CCNodes added. It's just their handlers are different.

You would also be a bit more efficient in that, because then you could sprite batch, which is a lot more efficient than drawing sprites directly to the game layer.

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.