🪞Custom Textures
How to change the textures of MM blocks
Create your blocks and load the game at least once to generate the new model files.
Get your blocks model file from
modpackInstance/config/mm/pack/assets/mm/models/block/(json file here)
Place it into your resource pack
modpackInstance/config/openloader/resources/datapack_name/assets/mm/models/block/json_file_here.json
Open the
.json
file with any notepad editor.Scroll down until you see the following:
"base": {
"parent": "minecraft:block/cube_all",
"render_type": "minecraft:solid",
"textures": {
"all": "mm:block/base_block"
}
}
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".
Last updated