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
This commit is contained in:
Daan Verstraten
2022-10-29 16:36:39 +02:00
committed by GitHub
parent 519f9ed84a
commit 2fe9f2ed70
50 changed files with 530 additions and 376 deletions

View File

@@ -0,0 +1,21 @@
{
"$id": "blockception.minecraft.behavior.blocks.minecraft.on_interact",
"type": "object",
"title": "On Fall On",
"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"
}
}
}