Updated Schemas

This commit is contained in:
Ben C 2022-11-26 21:03:46 +00:00
parent 60dee93792
commit 059beedca3

View File

@ -575,10 +575,10 @@
"format": "float",
"default": 750.0
},
"hasVines": {
"type": "boolean",
"description": "Whether this dimensions has vines.\nSet to false if you want to create your own vines.",
"default": true
"vinePrefab": {
"description": "The dimension the vines will be copied from.\nOnly a handful are available due to batched colliders.",
"default": "hub",
"$ref": "#/definitions/VinePrefabType"
},
"allowedEntrances": {
"type": "array",
@ -590,6 +590,24 @@
}
}
},
"VinePrefabType": {
"type": "string",
"description": "",
"x-enumNames": [
"None",
"Hub",
"Cluster",
"SmallNest",
"ExitOnly"
],
"enum": [
"none",
"hub",
"cluster",
"smallNest",
"exitOnly"
]
},
"BrambleNodeInfo": {
"type": "object",
"additionalProperties": false,