Files
minecraft-bedrock-json-schemas/source/behavior/entities/1.16.0/components/minecraft.custom_hit_test.json

34 lines
1.2 KiB
JSON
Raw Normal View History

2021-06-06 10:07:19 +00:00
{
"$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",
2021-06-16 16:19:12 +02:00
"description": "UNDOCUMENTED",
2021-07-01 11:35:53 +02:00
"$comment": "UNDOCUMENTED",
2021-06-06 10:07:19 +00:00
"items": {
"type": "object",
"title": "Hitbox",
2021-06-16 16:19:12 +02:00
"description": "UNDOCUMENTED",
2021-07-01 11:35:53 +02:00
"$comment": "UNDOCUMENTED",
2021-06-06 10:07:19 +00:00
"additionalProperties": false,
"properties": {
2021-07-01 16:37:41 +02:00
"width": { "type": "number", "title": "Width", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
"height": { "type": "number", "title": "Height", "description": "UNDOCUMENTED", "$comment": "UNDOCUMENTED" },
2021-06-06 10:07:19 +00:00
"pivot": {
"type": "array",
"title": "Pivot",
2021-06-16 16:19:12 +02:00
"description": "UNDOCUMENTED",
2021-07-01 11:35:53 +02:00
"$comment": "UNDOCUMENTED",
2021-06-06 10:07:19 +00:00
"items": [{ "type": "number" }, { "type": "number" }, { "type": "number" }]
}
}
}
}
}
}