I wonder what\'s the best approach to combine several CCSprites dynamically into one grouped object using cocos2d.
I have to dynamically create characters from a set
Create an empty CCSprite and add the body parts from different sprites. Example:
CCSprite *body = [CCSprite node];
CCSprite *arm = [CCSprite spriteWithSpriteFrameName:@"arm.png"];
[arm setPosition:CGPointMake(10,10)];
[body addChild:arm];
And so on. This way you can rotate the sprite named body and all body parts will adjust accordingly.