Files
minecraft-bedrock-json-schemas/source/behavior/items/format/components/render_offsets.json
DW623 d3a8c7a4a4 Add Item Examples (#182)
Add Examples to Item Components from MS-Learn Website
2023-08-17 20:04:39 +02:00

75 lines
2.3 KiB
JSON

{
"$id": "blockception.minecraft.behavior.items.minecraft:render_offsets",
"title": "Render Offsets",
"description": "Render offsets component: optional values can be given to offset the way the item is rendered. Depreciated in json formats 1.20.10 and higher",
"type": "object",
"additionalProperties": false,
"definitions": {
"offset_spec": {
"type": "object",
"title": "Offset",
"description": "UNDOCUMENTED.",
"$comment": "UNDOCUMENTED",
"additionalProperties": false,
"properties": {
"first_person": {
"title": "First Person",
"description": "UNDOCUMENTED.",
"$comment": "UNDOCUMENTED",
"$ref": "#/definitions/mode"
},
"thrid_person": {
"title": "Thrid Person",
"description": "UNDOCUMENTED.",
"$comment": "UNDOCUMENTED",
"$ref": "#/definitions/mode"
}
}
},
"mode": {
"type": "object",
"title": "Mode",
"description": "UNDOCUMENTED.",
"$comment": "UNDOCUMENTED",
"additionalProperties": false,
"properties": {
"position": {
"title": "Position",
"description": "The position transformation.",
"$ref": "#/definitions/vec3"
},
"rotation": {
"title": "Rotation",
"description": "The rotation transformation.",
"$ref": "#/definitions/vec3"
},
"scale": {
"title": "Scale",
"description": "The scale transformation.",
"$ref": "#/definitions/vec3"
}
}
},
"vec3": {
"type": "array",
"title": "Vector",
"description": "X Y Z.",
"items": [
{ "title": "X", "description": "The X tranformation.", "type": "number" },
{ "title": "Y", "description": "The Y tranformation.", "type": "number" },
{ "title": "Z", "description": "The Z tranformation.", "type": "number" }
]
}
},
"properties": {
"main_hand": { "title": "Main Hand", "description": "Right hand transform data.", "type": "string" },
"off_hand": { "title": "Off Hand", "description": "Left hand transform data.", "type": "string" }
},
"examples": [
{
"main_hand": [0,0,0],
"off_hand":[0,0.5,0]
}
]
}