I am starting out Android Cocos2D from here. I see that a sprite image can be added directly.

However, I already got myself a huge sprite sheet, it got every single sprites used in the game.

Is there some sort of function call in Cocos2D that I can simply just specify "I want to draw a portion (x1,y1) to (x2,y2) from the sprite sheet to a location on CCGLSurfaceView"?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

CCSpriteSheet is deprecated. It's better to use CCSpriteBatchNode instead (actually they are very similar). You can create sprites from batchNode:

CCSprite *sprite = [CCSprite spriteWithBatchNode:batch rect:CGRectMake(x1, y1, x2, y2)];

That's the objective-c code, but i thinks there is the same function in android version

link|improve this answer
It seems Android Cocos2D is using older port of iPhone Cocos2D in the template file. It seems I will need to compile from source if I need this. – Karl Aug 25 '11 at 15:01
feedback

Your Answer

 
or
required, but never shown

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