Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
387 views
in Technique[技术] by (71.8m points)

combining multiple CCSprites into one grouped object in cocos2d

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 of multiple CCSprites. The elements can't move relative to each other after combined - and are never separated again.

When combined they should behave just like one CCSprite in terms of moving and turning etc.

I couldn't find anything in cocos2d, or do I have to use a physics engine just to achieve this? I am afraid, using Box2d (without experience) creates a lot of additional coding overhead and effort.

Many thanks

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...