From 281268b9a22a9c4c9691bc8f7ef7142621b7e322 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 7 Nov 2022 01:57:43 +0000 Subject: [PATCH] Updated Schemas --- NewHorizons/Schemas/body_schema.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/NewHorizons/Schemas/body_schema.json b/NewHorizons/Schemas/body_schema.json index 0c3bb8be..c05c88c3 100644 --- a/NewHorizons/Schemas/body_schema.json +++ b/NewHorizons/Schemas/body_schema.json @@ -1741,11 +1741,6 @@ "$ref": "#/definitions/TimeValuePair" } }, - "makeZeroGVolume": { - "type": "boolean", - "description": "Only for White Holes. Should this white hole repel the player from it.", - "default": true - }, "pairedSingularity": { "type": "string", "description": "The uniqueID of the white hole or black hole that is paired to this one. If you don't set a value, entering will kill\nthe player" @@ -1758,9 +1753,15 @@ "description": "Position of the singularity", "$ref": "#/definitions/MVector3" }, - "size": { + "horizonRadius": { "type": "number", - "description": "Radius of the singularity. Note that this isn't the same as the event horizon, but includes the entire volume that\nhas warped effects in it.", + "description": "Radius of the event horizon (solid part)", + "format": "float", + "minimum": 0.0 + }, + "distortRadius": { + "type": "number", + "description": "Radius of the distortion effects. Defaults to 2 * horizonRadius", "format": "float", "minimum": 0.0 }, @@ -1771,6 +1772,10 @@ "type": { "description": "Type of singularity (white hole or black hole)", "$ref": "#/definitions/SingularityType" + }, + "hasAudio": { + "type": "boolean", + "description": "Whether it has ambient audio" } } },