Files
minecraft-bedrock-json-schemas/behaviour/blocks/1.16.200/events/set_block_at_pos.json

28 lines
1.9 KiB
JSON
Raw Normal View History

2021-01-05 10:41:43 +01:00
<EFBFBD><EFBFBD>{
2021-01-05 01:05:33 +01:00
"$schema": "http://json-schema.org/draft-07/schema",
2021-01-05 10:41:43 +01:00
"$id": "blockception.minecraft.behaviour.1.16.200.block.events.set_block_at_pos",
2021-01-05 01:05:33 +01:00
"type": "object",
2021-01-05 10:41:43 +01:00
"description": "Sets a block relative to this block to another block type.",
"title": "set_block_at_pos 1.16.200",
2021-01-05 01:05:33 +01:00
"additionalProperties": false,
"properties": {
2021-01-05 10:41:43 +01:00
"block_offset": {
"type": "array",
"default": [0.0, 0.0, 0.0],
"description": "The offset from the block's center.",
"title": "block offset",
"items": [
{ "type": "number", "title": "X", "description": "The x offset from the block's center." },
{ "type": "number", "title": "Y", "description": "The y offset from the block's center." },
{ "type": "number", "title": "Z", "description": "The z offset from the block's center." }
]
},
"block_type": {
"type": "string",
"default": "",
"description": "The type of block to set.",
"title": "block type"
}
2021-01-05 01:05:33 +01:00
}
}