Files
minecraft-bedrock-json-schemas/source/behavior/features/1.13.0/features/minecraft.scan_surface.json
2021-07-01 16:37:41 +02:00

31 lines
1.2 KiB
JSON

{
"type": "object",
"title": "Rect Layout",
"description": "`minecraft:scan_surface` scans the surface of a Chunk, calling place() on the surface of each block column.\nSucceeds if: A Feature was successfully placed during the scan.\nFails if: No Feature was placed during the course of the scan.",
"additionalProperties": false,
"required": ["description", "scan_surface_feature"],
"properties": {
"description": {
"title": "Description",
"description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED",
"type": "object",
"required": ["identifier"],
"properties": {
"identifier": {
"title": "Identifier",
"description": "The name of this feature in the form `namespace_name:feature_name`. `feature_name` must match the filename.",
"type": "string",
"$ref": "../../../../general/feature/identifier.json"
}
}
},
"scan_surface_feature": {
"title": "Scan Surface Feature",
"description": "Named reference of feature to be placed",
"type": "string",
"$ref": "../../../../general/feature/identifier.json"
}
}
}