Package ru.snake.spritepacker.writer

Examples of ru.snake.spritepacker.writer.JoinTextWriter


      factory.traverse(imgWriter);

      boolean atlasPerAnimation = factory.isAtlasPerAnim();

      if (descriptionJoin) {
        JoinTextWriter txtWriter = new JoinTextWriter(output,
            destination);

        txtWriter.setPrefix(descriptionPrefix);
        txtWriter.setPostfix(descriptionPostfix);

        writeOutput(descriptionHeader, descriptionFormat,
            descriptionFooter, txtWriter);
      } else {
        for (Integer atlasId : output.atlasSizes.keySet()) {
          AtlasTextWriter txtWriter = new AtlasTextWriter(output,
              destination, atlasId);

          txtWriter.setPrefix(descriptionPrefix);
          txtWriter.setPostfix(descriptionPostfix);
          txtWriter.setIgnoreAnimation(!atlasPerAnimation);

          if (!writeOutput(descriptionHeader, descriptionFormat,
              descriptionFooter, txtWriter)) {
            break;
          }
View Full Code Here

TOP

Related Classes of ru.snake.spritepacker.writer.JoinTextWriter

Copyright © 2018 www.massapicom. 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.