From 53aa0b5b7b985150d13135cea886aba3c076f7ad Mon Sep 17 00:00:00 2001 From: Ben C Date: Tue, 18 Feb 2025 02:20:04 +0000 Subject: [PATCH] Updated Schemas --- NewHorizons/Schemas/title_screen_schema.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/NewHorizons/Schemas/title_screen_schema.json b/NewHorizons/Schemas/title_screen_schema.json index f1c45631..8eb61bda 100644 --- a/NewHorizons/Schemas/title_screen_schema.json +++ b/NewHorizons/Schemas/title_screen_schema.json @@ -2,11 +2,12 @@ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Title Screen Schema", "type": "object", + "description": "Allows you to configure the title screen with custom music, skyboxes, and loading props from asset bundles.\nYou can define a list of title screen configurations, with different persistent condition/ship log facts required to display them.", "additionalProperties": false, "properties": { "titleScreens": { "type": "array", - "description": "Create title screens", + "description": "Create title screens.\nThe last title screen in the list with its display conditions (persistent condition and/or ship log) met will be displayed if this mod\nis chosen to be shown on the main menu.", "items": { "$ref": "#/definitions/TitleScreenInfo" } @@ -19,6 +20,7 @@ "definitions": { "TitleScreenInfo": { "type": "object", + "description": "A single title screen configuration", "additionalProperties": false, "properties": { "menuTextTint": {