So I have recently started modding on this minecraft version and I can't get textures to worki. I have implemented a block and an item, the block textures in the world are working but neither of the item/block are working in the inventory. Any solution?
ModItem json:
{
"parent": "somelxmod:builtin/generated",
"textures": {
"all": "somelxmod:items/moditems"
},
"display": {
"thirdperson": {
"rotation": [ -90, 0, 0 ],
"translation": [ 0, 1, -3 ],
"scale": [ 0.55, 0.55, 0.55 ]
},
"firstperson": {
"rotation": [ 0, -135, 25 ],
"translation": [ 0, 4, 2 ],
"scale": [ 1.7, 1.7, 1.7 ]
}
}
}
PS, tell me if you need to know any other files.
PS2,I have been the whole day trying solutions on the internet but they are not working.