Updated Schemas

This commit is contained in:
github-actions[bot] 2022-06-07 12:37:39 +00:00
parent f84b109a3d
commit 5f6bd90f00

View File

@ -297,6 +297,10 @@
"type": "object", "type": "object",
"additionalProperties": false, "additionalProperties": false,
"properties": { "properties": {
"cloudsPrefab": {
"description": "Should these clouds be based on Giant's Deep's banded clouds, or the Quantum Moon's non-banded clouds?",
"$ref": "#/definitions/CloudPrefabType"
},
"capPath": { "capPath": {
"type": "string", "type": "string",
"description": "Relative filepath to the cloud cap texture, if the planet has clouds." "description": "Relative filepath to the cloud cap texture, if the planet has clouds."
@ -341,13 +345,23 @@
"unlit": { "unlit": {
"type": "boolean", "type": "boolean",
"description": "If the top layer shouldn't have shadows. Set to true if you're making a brown dwarf for example." "description": "If the top layer shouldn't have shadows. Set to true if you're making a brown dwarf for example."
},
"useBasicCloudShader": {
"type": "boolean",
"description": "Set to `false` in order to use Giant's Deep's shader. Set to `true` to just apply the cloud texture as is."
} }
} }
}, },
"CloudPrefabType": {
"type": "string",
"description": "",
"x-enumNames": [
"GiantsDeep",
"QuantumMoon",
"Basic"
],
"enum": [
"giantsDeep",
"quantumMoon",
"basic"
]
},
"CloudFluidType": { "CloudFluidType": {
"type": "string", "type": "string",
"description": "", "description": "",