Package ru.snake.spritepacker.core.packer

Examples of ru.snake.spritepacker.core.packer.ImagePacker.addItem()


        ImagePacker packer = new ImagePacker(margin, padding);

        for (Texture eachTexture : allTextures) {
          ImageData data = new ImageData(animationIndex, eachTexture);

          packer.addItem(data);
        }

        output.setNameFormat(eachAnimation.name + "-", null);

        packer.setOutput(output);
View Full Code Here


      ImagePacker packer = new ImagePacker(margin, padding);

      for (Texture eachTexture : allTextures) {
        ImageData data = new ImageData(eachTexture);

        packer.addItem(data);
      }

      output.setNameFormat("atlas-", null);

      packer.setOutput(output);
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.