#Block texture is not loading

1 messages · Page 1 of 1 (latest)

gleaming vale
#

My custom block texture is not loading. Does anyone know what might be the issue?

{
    "format_version": "1.20.10",
    "minecraft:block": {
        "description": {
            "identifier": "moon:benitoite_ore",
            "menu_category": {
                "category": "construction"
            }
        },
        "components": {
            "minecraft:loot": "loot_tables/blocks/benitoite_ore.json",
            "minecraft:material_instances": {
                "*": {
                    "texture": "benitoite_ore_side"
                }
            },
            "minecraft:destructible_by_mining": {
                "seconds_to_destroy": 30
            },
            "minecraft:destructible_by_explosion": {
                "explosion_resistance": 1800
            },
            "minecraft:friction": 0.4,
            "minecraft:map_color": "#f4f5d7",
            "minecraft:light_dampening": 0,
            "minecraft:light_emission": 0
        }
    }
}```
gleaming vale
#

RP:

{
    "resource_pack_name": "pack.name",
    "texture_name": "atlas.terrain",
    "padding": 8,
    "num_mip_levels": 4,
    "texture_data": {
        "benitoite_ore_side" : {
            "textures": "textures/blocks/benitoite_ore"
        }
    }
}```
heavy ingot
#

@gleaming vale
in the resource pack folder you have 2 files normally

#

block.json

#

and terrain_texture.json

gleaming vale
#

I forgot about blocks.json. What should I do?

heavy ingot
heavy ingot
gleaming vale
#

no

heavy ingot
#

OK so :

#
{
"format_version": [1, 1, 0],
"benitoite_ore_side": {
      "textures": "benitoite_ore",
       "sound": "stone"
     }
}
#

put this in "block.json"

#

and if dosn't works change "benitoite_ore_side" by "benitoite_ore" in "terrain_texture" and in you block

gleaming vale
#

ok tysm