🪞Custom Textures

How to change the textures of MM blocks

  1. Create your blocks and load the game at least once to generate the new model files.

  2. Get your blocks model file from modpackInstance/config/mm/pack/assets/mm/models/block/(json file here)

  3. Place it into your resource pack

modpackInstance/config/openloader/resources/datapack_name/assets/mm/models/block/json_file_here.json

Link to Open Loader

  1. Open the .json file with any notepad editor.

  2. Scroll down until you see the following:

Example Model Snippet
"base": {
      "parent": "minecraft:block/cube_all",
      "render_type": "minecraft:solid",
      "textures": {
            "all": "mm:block/base_block"
      }
}
  1. Where it says "all": "mm:block/base_block" set "mm:block/base_block" to your block's texture. e.g. - "minecraft:block/sponge"

You must have `block` and all the folders inside of it, in the block path name e.g. - "tconstruct:block/smeltery/seared/bricks".
Press F3 + T to reload the resource pack.

Last updated