Files
minecraft-bedrock-json-schemas/source/behavior/blocks/format/triggers/on_placed.json
Daan Verstraten 2fe9f2ed70 Starting on blocks (#137)
* Starting on blocks

* Updated collision box

* Updated block components

* Fixed block/rotation

* Making orbi responsible for dependencies

* Updating blocks

* trigger -> triggers
2022-10-29 16:36:39 +02:00

22 lines
663 B
JSON

{
"$id": "blockception.minecraft.behavior.blocks.minecraft.on_placed",
"type": "object",
"title": "On Placed",
"description": "[Experimental] Describes event for this block.",
"properties": {
"condition": {
"type": "string",
"default": "",
"description": "The condition of event to be executed on the block.",
"title": "Condition"
},
"event": { "type": "string", "default": "", "description": "The event executed on the block.", "title": "Event" },
"target": {
"type": "string",
"default": "self",
"description": "The target of event executed on the block.",
"title": "Target"
}
}
}