Hi, im facing an issue that i've never gone through,
Basically i've done with Blockbench a 3D model and i can't get it to render in 3d when the item shows in the inventory, it looks like 2D:
Image 1
Image 2
But in the inventory is looking like this:
Image 3
The code that i've had so far is the following:
Registering the block:
`
public static final Block BASIC_FURNACE = registerBlock("basic_furnace",
new BasicFurnaceBlock(FabricBlockSettings.copyOf(Blocks.STONE_STAIRS).luminance(9)));
`
models/block:
{ "textures": { "0": "block/mossy_stone_bricks", "1": "block/spruce_log", "2": "block/coal_block", "3": "block/magma", "particle": "block/mossy_stone_bricks" }, "elements": [ {
"elements" contains all the blockbench cubes and so on...
model/item
{ "parent": "luiansmeltery:block/basic_furnace" }
What can be wrong here?
I have to add any json that is missing?
Thank you in advice 🙂