Files
minecraft-bedrock-json-schemas/source/behavior/entities/1.16.0/components/minecraft.custom_hit_test.json
2021-06-09 09:41:09 +02:00

31 lines
1.0 KiB
JSON

{
"$id": "blockception.minecraft.behavior.entities.1.16.0.minecraft.custom_hit_test",
"type": "object",
"title": "Custom Hit Test 1.16.0",
"description": "List of hitboxes for melee and ranged hits against the entity.",
"additionalProperties": false,
"properties": {
"hitboxes": {
"type": "array",
"title": "Hitboxes",
"description": "UNDOCUMENTATED",
"items": {
"type": "object",
"title": "Hitbox",
"description": "UNDOCUMENTATED",
"additionalProperties": false,
"properties": {
"width": { "type": "number", "title": "Width", "description": "UNDOCUMENTATED" },
"height": { "type": "number", "title": "Height", "description": "UNDOCUMENTATED" },
"pivot": {
"type": "array",
"title": "Pivot",
"description": "UNDOCUMENTATED",
"items": [{ "type": "number" }, { "type": "number" }, { "type": "number" }]
}
}
}
}
}
}