atlassprites

How to subclass AtlasSpriteManager in Cocos2d?

I need to create some compound sprites that will all move and rotate together. Since it's possible to change the position and rotation of an AtlasSpriteManager I've been trying to subclass so I can create a bunch of shortcuts like CompoundSprite *cSprite = [CompoundSprite spriteManagerWithFile:@"sprites.png"]; [cSprite makeComplexSprite...

AtlasSpriteManager animation

Hi all, I am using AtlasSpriteManager and AltasSprite to create frame by fram animation with 1 one file. I wanna write something that at first show a simple picture, without any animation and for example when I touch it, it shows some animation and return to the first position and frame. I just can't show the first frame without animatio...

How can I create a texture from an AtlasSpriteManager?

What I want to do is create a huge texture(w/ width of more than 1024) using a 1024x1024 image. I can retrieve the images using an AtlasSpriteManager, but whenever I try to retrieve the texture from the manager I can only get the first image. I need to set the position of every AtlasSprite in the manager to make a lengthy texture. Any ...