Advertisement
GenuineSounds

Untitled

Jan 18th, 2015
1,025
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.74 KB | None | 0 0
  1. Consider the default textures, and two separate texture packs in natural load order.
  2.  
  3.  
  4. Default:
  5. Texture: minecraft:textures/blocks/mipmaps/stone.png
  6. Mipmaps: Files not present: Auto-generated
  7. MCMeta: Since no mcmeta was found and the mips were auto generated do whatever MC does already.
  8.  
  9.  
  10. Pack 1:
  11. Texture: minecraft:textures/blocks/mipmaps/stone.png
  12. Mipmap 1: minecraft:mipmaps/blocks/mipmaps/stone.1.png
  13. Mipmap 2: minecraft:mipmaps/blocks/mipmaps/stone.2.png
  14. Mipmap 3: minecraft:mipmaps/blocks/mipmaps/stone.3.png
  15. Mipmap 4: minecraft:mipmaps/blocks/mipmaps/stone.4.png
  16. MCMeta: Since no mcmeta was found then the virtual mcmeta is generated. There is more than enough information to determine that these are indeed mips and there is no need to generate them as it normally would.
  17.  
  18.  
  19. Pack 2:
  20. Texture: minecraft:textures/blocks/mipmaps/stone.1.png
  21. Mipmaps: Files not present: Auto-generated
  22. MCMeta: Since no mcmeta was found and the mips were auto generated do whatever MC does already.
  23.  
  24. Pack 4:
  25. Texture: None.
  26. Mipmap 3: minecraft:mipmaps/blocks/mipmaps/stone.3.png
  27. MCMeta: Since no corresponding block or mcmeta was found then the virtual mcmeta is NOT generated.
  28.  
  29. Pack 5:
  30. Texture: minecraft:textures/blocks/mipmaps/stone.png
  31. Mipmap 1: minecraft:mipmaps/blocks/mipmaps/stone.1.png
  32. Mipmap 2: minecraft:mipmaps/blocks/mipmaps/stone.2.png
  33. Mipmap 3: minecraft:mipmaps/blocks/mipmaps/stone.3.png
  34. Mipmap 4: minecraft:mipmaps/blocks/mipmaps/stone.4.png
  35. MCMeta: minecraft:textures/blocks/mipmaps/stone.png.mcmeta
  36.  
  37.  
  38. There is no collision between automatically generated and automatically loaded mipmaps.
  39.  
  40. The only REAL difference between how MC operates now is that a virtual MCMeta file is created if the mipmaps are available and no MCMeta file was found.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement