-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"$id": "blockception.minecraft.behavior.blocks.minecraft.destroy_time", | ||
"title": "Destroy Time", | ||
"description": "This component can be specified as a Boolean. If this component is omitted, the default value for this component is true, which will give your block the default values for its parameters (a collision box the size/shape of a regular block).", | ||
"oneOf": [ | ||
{ | ||
"type": "boolean", | ||
"default": true | ||
}, | ||
{ | ||
"type": "object", | ||
"additionalProperties": false, | ||
"properties": { | ||
"origin": { | ||
"title": "Origin", | ||
"description": "Minimal position of the bounds of the collision box. origin is specified as [x, y, z] and must be in the range (-8, 0, -8) to (8, 16, 8), inclusive.", | ||
"type": "array", | ||
"items": [ | ||
{ "title": "X", "type": "number", "minimum": -8.0, "maximum": 8 }, | ||
{ "title": "Y", "minimum": 0, "maximum": 16 }, | ||
{ "title": "Z", "minimum": -8.0, "maximum": 8 } | ||
] | ||
}, | ||
"size": { | ||
"title": "Size", | ||
"description": "Size of each side of the collision box. Size is specified as [x, y, z]. origin + size must be in the range (-8, 0, -8) to (8, 16, 8), inclusive.", | ||
"type": "array", | ||
"items": [ | ||
{ "title": "X", "type": "number" }, | ||
{ "title": "Y", "type": "number" }, | ||
{ "title": "Z", "type": "number" } | ||
] | ||
} | ||
} | ||
} | ||
] | ||
} |