From c67b6bfc918184905749279c2dedd05fd172314b Mon Sep 17 00:00:00 2001 From: Ben C Date: Sat, 18 Mar 2023 16:43:29 +0000 Subject: [PATCH] Updated Schemas --- NewHorizons/Schemas/body_schema.json | 9 ++------- NewHorizons/Schemas/star_system_schema.json | 5 +++++ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/NewHorizons/Schemas/body_schema.json b/NewHorizons/Schemas/body_schema.json index d25f9db3..948e932b 100644 --- a/NewHorizons/Schemas/body_schema.json +++ b/NewHorizons/Schemas/body_schema.json @@ -1065,7 +1065,7 @@ "type": "array", "description": "Add black/white-holes to this planet", "items": { - "$ref": "#/definitions/SingularityModule" + "$ref": "#/definitions/SingularityInfo" } }, "signals": { @@ -1825,11 +1825,6 @@ "type": "string", "description": "An optional rename of this object" }, - "isRelativeToGroup": { - "type": "boolean", - "description": "Whether the socket will be placed relative to the group it belongs to. Overrides `isRelativeToParent`", - "default": true - }, "probability": { "type": "number", "description": "The probability any props that are part of this group will occupy this socket", @@ -1980,7 +1975,7 @@ } } }, - "SingularityModule": { + "SingularityInfo": { "type": "object", "additionalProperties": false, "properties": { diff --git a/NewHorizons/Schemas/star_system_schema.json b/NewHorizons/Schemas/star_system_schema.json index 12b9eaaf..e68cc226 100644 --- a/NewHorizons/Schemas/star_system_schema.json +++ b/NewHorizons/Schemas/star_system_schema.json @@ -216,6 +216,11 @@ "rename": { "type": "string", "description": "An optional rename of this object" + }, + "hasPhysics": { + "type": "boolean", + "description": "Whether the vessel should have physics enabled. This must be set to false for the vessel to stay attached to a parent body.", + "default": true } } },