Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions source/behavior/blocks/format/traits/connection.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"$id": "blockception.minecraft.behavior.blocks.traits.minecraft.connection",
"title": "Connection",
"description": "Contains information about whether the block connects to other blocks, and if so, on what faces. The values of the states will change when the block or neighboring blocks change or move.",
"additionalProperties": false,
"type": "object",
"required": ["enabled_states"],
"properties": {
"enabled_states": {
"title": "Enabled States",
"description": "Connection states you wish to enable",
"type": "array",
"uniqueItems": true,
"minItems": 1,
"items": {
"enum": ["minecraft:cardinal_connections"]
}
}
}
}