Files
minecraft-bedrock-json-schemas/source/behavior/features/features/minecraft.aggregate_feature.json
Xterionix e65c85ddfa Update features (#235)
* - Update features

* - Fix
2024-03-21 11:01:23 +01:00

36 lines
1.3 KiB
JSON

{
"title": "Aggregate Feature",
"description": "'minecraft:aggregate_feature` places a collection of features in an arbitary order. All features in the collection use the same input position. Features should not depend on each other, as there is no guarantee on the order the features will be placed.\n Succeeds if: At lease one feature is placed successfully.\n Fails if: All features fail to be placed.",
"type": "object",
"additionalProperties": false,
"required": [
"description",
"features"
],
"properties": {
"description": {
"$ref": "../types/description.json"
},
"features": {
"title": "Features",
"description": "Collection of features to be placed one by one. No guarantee of order. All features use the same input position.",
"type": "array",
"minItems": 1,
"items": {
"title": "Feature",
"description": "Feature identifer",
"type": "string"
}
},
"early_out": {
"type": "string",
"title": "Early Out",
"description": "Do not continue placing features once either the first success or first failure has occurred.",
"enum": [
"none",
"first_failure",
"first_success"
]
}
}
}