texture_overrides.txt 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. Texture Overrides
  2. =================
  3. You can override the textures of a node from a texture pack using
  4. texture overrides. To do this, create a file in a texture pack
  5. called override.txt
  6. Basic Format
  7. ------------
  8. Each line in an override.txt file is a rule. It consists of
  9. nodename face-selector texture
  10. For example,
  11. default:dirt_with_grass sides default_stone.png
  12. You can use ^ operators as usual:
  13. default:dirt_with_grass sides default_stone.png^[brighten
  14. Face Selectors
  15. --------------
  16. | face-selector | behavior |
  17. |---------------|---------------------------------------------------|
  18. | left | x- |
  19. | right | x+ |
  20. | front | z- |
  21. | back | z+ |
  22. | top | y+ |
  23. | bottom | y- |
  24. | sides | x-, x+, z-, z+ |
  25. | all | All faces. You can also use '*' instead of 'all'. |