Started by
adik123
on
Topic category: Advanced modding
i would want to make an item that has 32x in hand and 16x in inventory but it doesnt work and i have this code for main item:
{
"loader": "forge:separate_transforms",
"base": {
"parent": "ending_biomes:item/garnit_sword_big",
"textures": {
"0": "ending_biomes:item/netherite_sword_big"
}
},
"perspectives": {
"gui": {
"parent": "item/handheld",
"textures": {
"layer0": "ending_biomes:item/netherite_sword_small"
}
},
"ground": {
"parent": "item/handheld",
"textures": {
"layer0": "ending_biomes:item/netherite_sword_small"
}
},
"fixed": {
"parent": "item/handheld",
"textures": {
"layer0": "ending_biomes:item/netherite_sword_small"
}
}
}
}
16x
{
"parent": "item/handheld",
"textures": {
"layer0": "ending_biomes:item/netherite_sword_small"
}
}
32x
{
"parent": "minecraft:item/handheld",
"textures": {
"layer0": "ending_biomes:item/netherite_sword_big"
},
"display": {,
"thirdperson_righthand": {
"rotation": [ 0, 270, 40 ],
"translation": [ 0, 16, 3 ],
"scale": [ 2, 2, 1.2 ]
},
"thirdperson_lefthand": {
"rotation": [ 0, -270, -40 ],
"translation": [ 0, 16, 3 ],
"scale": [ 2, 2, 1.2 ]
},
"firstperson_righthand": {
"rotation": [ 0, 270, 40 ],
"translation": [ 0, 10, 4 ],
"scale": [ 2, 2, 2 ]
},
"firstperson_lefthand": {
"rotation": [ 0, -270, -40 ],
"translation": [ 0, 10, 4 ],
"scale": [ 2, 2, 2 ]
}
}
}
Edited by adik123 on Wed, 08/28/2024 - 09:34
btw i am on 2023.4 mcreator and version 1.20.1
fixed now base texture
16x
32x
Could you paste the .json without any annotations? I would like to use this.
you can just override anything you want