This commit is contained in:
DaanV2
2021-11-16 13:28:07 +01:00
parent 37eb685e09
commit dbcc99a8e2
2 changed files with 8 additions and 7 deletions

View File

@@ -11,7 +11,7 @@
"oneOf": [ "oneOf": [
{ {
"type": "string", "type": "string",
"$ref": "../../../../molang/number.json", "$ref": "../../../molang/number.json",
"description": "Expression for the coordinate (evaluated each iteration). Mutually exclusive with random distribution object below." "description": "Expression for the coordinate (evaluated each iteration). Mutually exclusive with random distribution object below."
}, },
{ {
@@ -39,12 +39,12 @@
{ {
"title": "Lower Bound", "title": "Lower Bound",
"description": "Lower bound (inclusive) of the scatter range, as an offset from the input point to scatter around", "description": "Lower bound (inclusive) of the scatter range, as an offset from the input point to scatter around",
"$ref": "../../../../molang/number.json" "$ref": "../../../molang/number.json"
}, },
{ {
"title": "Upper Bound", "title": "Upper Bound",
"description": "Upper bound (inclusive) of the scatter range, as an offset from the input point to scatter around", "description": "Upper bound (inclusive) of the scatter range, as an offset from the input point to scatter around",
"$ref": "../../../../molang/number.json" "$ref": "../../../molang/number.json"
} }
] ]
}, },
@@ -69,6 +69,7 @@
"description": "UNDOCUMENTED", "description": "UNDOCUMENTED",
"$comment": "UNDOCUMENTED", "$comment": "UNDOCUMENTED",
"additionalProperties": false, "additionalProperties": false,
"type": "object",
"required": ["iterations", "places_feature", "identifier"], "required": ["iterations", "places_feature", "identifier"],
"properties": { "properties": {
"coordinate_eval_order": { "coordinate_eval_order": {
@@ -86,7 +87,7 @@
"iterations": { "iterations": {
"title": "Iterations", "title": "Iterations",
"description": "Number of scattered positions to generate", "description": "Number of scattered positions to generate",
"$ref": "../../../../molang/number.json" "$ref": "../../../molang/number.json"
}, },
"places_feature": { "places_feature": {
"title": "Places Feature", "title": "Places Feature",
@@ -121,7 +122,7 @@
{ {
"type": "string", "type": "string",
"description": "Probability (0-100) that this scatter will occur. Not evaluated each iteration; either no iterations will run, or all will.", "description": "Probability (0-100) that this scatter will occur. Not evaluated each iteration; either no iterations will run, or all will.",
"$ref": "../../../../molang/number.json" "$ref": "../../../molang/number.json"
}, },
{ {
"type": "number", "type": "number",

View File

@@ -21,11 +21,11 @@
"type": "array", "type": "array",
"items": [ "items": [
{ {
"$ref": "../../../../molang/number.json", "$ref": "../../../molang/number.json",
"title": "Min" "title": "Min"
}, },
{ {
"$ref": "../../../../molang/number.json", "$ref": "../../../molang/number.json",
"title": "Max" "title": "Max"
} }
] ]