mirror of
https://github.com/Mojang/bedrock-samples.git
synced 2025-10-12 09:54:55 +00:00
34 lines
849 B
JSON
34 lines
849 B
JSON
{
|
|
"$id": "2580189731",
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"description": "Max distances from the jigsaw pieces to the structure start",
|
|
"oneOf": [
|
|
{
|
|
"maximum": 128,
|
|
"minimum": 1,
|
|
"type": "integer"
|
|
},
|
|
{
|
|
"properties": {
|
|
"horizontal": {
|
|
"description": "The max distance on the horizontal plane (XZ): [1-128]",
|
|
"maximum": 128,
|
|
"minimum": 1,
|
|
"type": "integer"
|
|
},
|
|
"vertical": {
|
|
"description": "The max distance on the vertical axis (Y). Defaults to no limit.",
|
|
"maximum": 2147483647,
|
|
"minimum": 1,
|
|
"type": "integer"
|
|
}
|
|
},
|
|
"required": [
|
|
"horizontal"
|
|
],
|
|
"type": "object"
|
|
}
|
|
],
|
|
"title": "MaxDistanceFromCenter",
|
|
"x-format-version": "1.21.20"
|
|
} |