Examples of GDXImageCatalog


Examples of transientlibs.bindedobjects.core.GDXImageCatalog

        Array<AtlasRegion> regions = atlas.getRegions();
       
        Log.info("Amount of images to bind: "+regions.size);

        GDXImageCatalog newImage;
       
        for (AtlasRegion ar : regions) {
            newImage = new GDXImageCatalog(ar, pathToGenericImages);
            GDXImageCatalog.images.add(newImage);
            newImage.tags.add("generic");
        }
       
       
View Full Code Here

Examples of transientlibs.bindedobjects.core.GDXImageCatalog

        TextureAtlas atlas = manager.get(Detonator.INSTANCE.gameDataDir + "/imgpacked/packed.atlas", TextureAtlas.class);

        Array<AtlasRegion> regions = atlas.getRegions();

        for (AtlasRegion ar : regions) {
            GDXImageCatalog.images.add(new GDXImageCatalog(ar));
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.