This commit is contained in:
DaanV2
2021-06-05 21:54:49 +02:00
parent 7fa54de89d
commit a0e4135b59
56 changed files with 717 additions and 147 deletions

View File

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

View File

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