1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-02-07 15:59:43 +00:00
Mike Ammerlaan 5ce65764d3 v1.21.50.7
2024-12-03 08:43:20 -08:00

167 lines
5.1 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "2195141389",
"definitions": {
"2176758423": {
"title": "Scatter Chance",
"oneOf": [
{
"$ref": "#/definitions/3178719147"
},
{
"type": "object",
"properties": {
"denominator": {
"type": "integer",
"$metaProperties": {},
"minimum": 1.0
},
"numerator": {
"type": "integer",
"$metaProperties": {},
"minimum": 1.0
}
},
"required": [
"denominator",
"numerator"
]
}
],
"$metaProperties": {}
},
"2267778531": {
"title": "struct SharedTypes::Legacy::ExpressionNode::StringRepresentation",
"oneOf": [
{
"type": "string"
},
{
"type": "object",
"properties": {
"expression": {
"type": "string",
"$metaProperties": {}
},
"version": {
"type": "integer",
"$metaProperties": {}
}
},
"required": [
"expression",
"version"
]
}
],
"$metaProperties": {}
},
"3178719147": {
"title": "struct SharedTypes::Legacy::ExpressionNode",
"oneOf": [
{
"$ref": "#/definitions/2267778531"
},
{
"type": "number"
}
],
"$metaProperties": {}
},
"4150871210": {
"title": "Coordinate Range",
"oneOf": [
{
"$ref": "#/definitions/3178719147"
},
{
"type": "object",
"properties": {
"distribution": {
"title": "Random Distribution Type",
"type": "string",
"enum": [
"fixed_grid",
"gaussian",
"inverse_gaussian",
"jittered_grid",
"triangle",
"uniform"
],
"$metaProperties": {}
},
"extent": {
"title": "sequence container",
"type": "array",
"items": {
"$ref": "#/definitions/3178719147"
},
"$metaProperties": {},
"minItems": 2,
"maxItems": 2
},
"grid_offset": {
"type": "integer",
"$metaProperties": {},
"minimum": 0.0
},
"step_size": {
"type": "integer",
"$metaProperties": {},
"minimum": 1.0
}
},
"required": [
"distribution",
"extent"
]
}
],
"$metaProperties": {}
}
},
"title": "Scatter Params",
"type": "object",
"properties": {
"coordinate_eval_order": {
"title": "Coordinate Evaluation Order",
"type": "string",
"enum": [
"xyz",
"xzy",
"yxz",
"yzx",
"zxy",
"zyx"
],
"$metaProperties": {}
},
"iterations": {
"$ref": "#/definitions/3178719147",
"$metaProperties": {}
},
"scatter_chance": {
"$ref": "#/definitions/2176758423",
"$metaProperties": {}
},
"x": {
"$ref": "#/definitions/4150871210",
"$metaProperties": {}
},
"y": {
"$ref": "#/definitions/4150871210",
"$metaProperties": {}
},
"z": {
"$ref": "#/definitions/4150871210",
"$metaProperties": {}
}
},
"required": [
"iterations",
"x",
"y",
"z"
],
"$metaProperties": {}
}