Package net.minecraft.src

Examples of net.minecraft.src.ResourcePack


      List resourcePacks = TexturePackAPI.getResourcePacks((String)null);
      logger.fine("%s resource packs (%d selected):", new Object[] {initializing ? "initializing" : "changing", Integer.valueOf(resourcePacks.size())});
      Iterator namespaces = resourcePacks.iterator();

      while (namespaces.hasNext()) {
        ResourcePack textureManager = (ResourcePack)namespaces.next();
        logger.fine("resource pack: %s", new Object[] {textureManager.getPackName()});
      }

      Set namespaces1 = TexturePackAPI.getNamespaces();
      logger.fine("%d resource namespaces:", new Object[] {Integer.valueOf(namespaces1.size())});
      Iterator textureManager1 = namespaces1.iterator();
View Full Code Here


  private static void findResources(String namespace, String directory, String suffix, boolean recursive, boolean directories, Collection<ResourceLocation> resources) {
    Iterator i$ = getResourcePacks(namespace).iterator();

    while (i$.hasNext()) {
      ResourcePack resourcePack = (ResourcePack)i$.next();

      if (resourcePack instanceof FileResourcePack) {
        ZipFile base = ((FileResourcePack)resourcePack).resourcePackZipFile;

        if (base != null) {
View Full Code Here

TOP

Related Classes of net.minecraft.src.ResourcePack

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.