Updated Schemas

This commit is contained in:
github-actions[bot] 2022-07-15 13:28:16 +00:00
parent d9eaa04ba1
commit 2378a1ae54

View File

@ -530,6 +530,14 @@
"description": "The internal radius (in meters) of the dimension. The default is 1705.",
"format": "float",
"default": 1705.0
},
"allowedEntrances": {
"type": "array",
"description": "An array of integers from 0-5. By default, all entrances are allowed. To force this dimension to warp players in from only one point (like the anglerfish nest dimension in the base game) set this value to [3], [5], or similar. Values of 0-5 only.",
"items": {
"type": "integer",
"format": "int32"
}
}
}
},
@ -571,6 +579,14 @@
"lightTint": {
"description": "The color of the shafts of light coming from the entrances to the node. Leave blank for the default yellowish color: (131, 124, 105, 255)",
"$ref": "#/definitions/MColor"
},
"possibleExits": {
"type": "array",
"description": "An array of integers from 0-5. By default, all entrances are allowed. To force this node to warp players out from only one hole set this value to [3], [5], or similar. Values of 0-5 only.",
"items": {
"type": "integer",
"format": "int32"
}
}
}
},