#How to fix this?
1 messages · Page 1 of 1 (latest)
? attachables
3D Items
Attachables are a system in resource packs to give items custom models and animations when held.
https://wiki.bedrock.dev/items/attachables.html
?render-offsets
Example Render Offsets
"minecraft:render_offsets" has two main parameters for the main hand and the off hand, each of which has two fields for the first-person and third-person views. These are defined by a position, a rotation, and a scale.
"minecraft:render_offsets": {
"main_hand": {
"first_person": {
"position": [0, 0, 0],
"rotation": [0, 0, 0],
"scale": [0, 0, 0]
},
"third_person":{
"position": [0, 0, 0],
"rotation": [0, 0, 0],
"scale": [0, 0, 0]
}
},
"off_hand": {
"first_person": {
"position": [0, 0, 0],
"rotation": [0, 0, 0],
"scale": [0, 0, 0]
},
"third_person": {
"position": [0, 0, 0],
"rotation": [0, 0, 0],
"scale": [0, 0, 0]
}
}
}
Last updated:
·