繁体   English   中英

材质到纹理图集和动画

[英]Textures to texture atlas and animation

我认为动画中许多纹理的加载会导致游戏中的轻微滞后,我希望将阵列纹理放入TextureAtlas中。 下面的代码是我的动画代码,如果显示了纹理索引,它还将在动画中获取纹理框架索引并执行任务....,我已经有了一个名为shot.pack的.pack文件,用于纹理图集,不知道如何应用它,使它像这样。 我希望有人能帮帮忙

     Texture[] shot;
     //At CONSTRUCTOR
    shot = new Texture[21];
    for(int i=0; i <21; i++){
        if(i == 19 || i==20 ){
            shot[i]=new Texture("s18.png");
        }
        else {
            shot[i] = new Texture("s" + Integer.toString(i) + ".png");
        }

    }
        //animation
    animation = new Animation(1/19f,shot);


   //@render METHOD
   sb.draw((Texture) animation.getKeyFrame(timePassed, false), ShootingTreys.WIDTH * 0.03f, ShootingTreys.HEIGHT * 0.03f, (ShootingTreys.WIDTH * 1 / 6), (ShootingTreys.HEIGHT / 2) + (ShootingTreys.HEIGHT * 0.13f));

        if (animation.getKeyFrameIndex(timePassed) == 20) {
            isShotDelay = true;
            shotDelay += Gdx.graphics.getDeltaTime();

            if (shotDelay >= 0.2f || ball.getBall().getY() < ShootingTreys.HEIGHT * 0.2f) {
                touch = false;
                timePassed = 0;
                shotDelay = 0;
                isShotDelay = true;
                //for missed ball
                colide = false;
            }
        }

将所有动画帧保存在一个单独的.pack文件中

    TextureAtlas aniAtlas=new TextureAtlas("ani.pack");
    Array<TextureAtlas.AtlasRegion> animationFrame=aniAtlas.getRegions();
    float duration=.4f;
    Animation<TextureRegion> animation=new Animation<TextureRegion>(duration,animationFrame);

一个.pack中的多个Animation的文件保留了类似类型文件的索引概念,例如。
bird_0.png,bird_1.png,.....
cat_0.png,cat_1.png,.....

    TextureAtlas multiAniAtlas=new TextureAtlas("ani.pack");
    Array<TextureAtlas.AtlasRegion> birdFrames=multiAniAtlas.findRegions("bird");
    float duration1=.55f;
    Animation<TextureRegion> birdAnimation=new Animation<TextureRegion>(duration1,birdFrames);

使用可以使用AssetManger并通过以下方式加载TextureAtlas:

    AssetManager assetManager=new AssetManager();
    assetManager.setLoader(TextureAtlas.class, new TextureAtlasLoader(new InternalFileHandleResolver()));
    assetManager.load("ani.pack", TextureAtlas.class);
    assetManager.finishLoading();

    TextureAtlas atlas=assetManager.get("ani.pack");

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM