From 5f6bd90f004edf3a8f0d6877c6245c0860341f4c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 7 Jun 2022 12:37:39 +0000 Subject: [PATCH] Updated Schemas --- NewHorizons/Schemas/body_schema.json | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/NewHorizons/Schemas/body_schema.json b/NewHorizons/Schemas/body_schema.json index ce1071f5..00b268c8 100644 --- a/NewHorizons/Schemas/body_schema.json +++ b/NewHorizons/Schemas/body_schema.json @@ -297,6 +297,10 @@ "type": "object", "additionalProperties": false, "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": { "type": "string", "description": "Relative filepath to the cloud cap texture, if the planet has clouds." @@ -341,13 +345,23 @@ "unlit": { "type": "boolean", "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": { "type": "string", "description": "",