I use Texture Packer. I have .pvr.ccz file there are 10 frames.

I need to create an AnimatedSprite with this animation, but TexturePacker extension return only TextureRegion files.

How I can create TiledTextureRegion from this file?

link|improve this question
Remember that pvr textures will not work in every android device. – Macarse Feb 16 at 12:27
why? ..................... – Androider Feb 16 at 13:33
Check this link: developer.motorola.com/docstools/library/… – Macarse Feb 16 at 13:42
feedback

2 Answers

up vote 1 down vote accepted
public TiledTextureRegion getTiledTextureFromPack(String name) {
    TexturePackTextureRegionLibrary packer;
    TexturePack spritesheetTexturePack;
    try {
        spritesheetTexturePack = new TexturePackLoader(game.getTextureManager(), "packs/")
                .loadFromAsset(game.getAssets(), name + ".xml");
        spritesheetTexturePack.loadTexture();
        this.packer = spritesheetTexturePack.getTexturePackTextureRegionLibrary();
    } catch (final TexturePackParseException e) {
        Debug.e(e);
    }

    TexturePackerTextureRegion[] obj = new TexturePackerTextureRegion[this.packer
            .getIDMapping().size()];

    for (int i = 0; i < this.packer.getIDMapping().size(); i++) {
        obj[i] = this.packer.get(i);
    }

    TiledTextureRegion texture = new TiledTextureRegion(spritesheetTexturePack.getTexture(),
            obj);

    return texture;
}

I found solution

link|improve this answer
feedback

I am no and engine specialist but if you tell me more about that animation class we might find a solution ;-)

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.