ldtteam / Domum-Ornamentum

GNU General Public License v3.0
11 stars 25 forks source link

inventory item not shown #220

Closed roeeNavonPrivate closed 4 months ago

roeeNavonPrivate commented 9 months ago

i am using mcreator to make a mod that addes some blocks, and i am trying to add support for DO using the tags. it is working, when i place the it visible and textured correctly, yet the item in the inventory is invisible. here is some photos: image image

Raycoms commented 9 months ago

@marchermans any clue?

roeeNavonPrivate commented 9 months ago

Is there is a better place to ask this question?

marchermans commented 8 months ago

Generally this means that the model for the Block in the inventory is structured weirdly and is not compatible.

roeeNavonPrivate commented 8 months ago

i light of what you have said i think that i found the problem, I would be happy if you will confirm it. this is the json file of the block model of an example block from my mod: { "parent": "block/cube", "textures": { "down": "roees_utils:block/blue_pastel_bricks", "up": "roees_utils:block/blue_pastel_bricks", "north": "roees_utils:block/blue_pastel_bricks", "east": "roees_utils:block/blue_pastel_bricks", "south": "roees_utils:block/blue_pastel_bricks", "west": "roees_utils:block/blue_pastel_bricks", "particle": "roees_utils:block/blue_pastel_bricks" }, "render_type": "solid" } i checked against vanilla minecraft and the parent tag there is minecraft:block/cube_all. in any case i am also adding here the item model json, in case i am wrong at my eypotesis: { "parent": "roees_utils:block/blue_pastel_bricks", "display": { "thirdperson": { "rotation": [ 10, -45, 170 ], "translation": [ 0, 1.5, -2.75 ], "scale": [ 0.375, 0.375, 0.375 ] } } }