From 195a20b2cd3524375c41362dbb27c765a09db37f Mon Sep 17 00:00:00 2001 From: xen-42 Date: Mon, 17 Feb 2025 21:09:14 -0500 Subject: [PATCH] Add some more descriptions to title screen --- NewHorizons/External/Configs/TitleScreenConfig.cs | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/NewHorizons/External/Configs/TitleScreenConfig.cs b/NewHorizons/External/Configs/TitleScreenConfig.cs index e5a73046..b7c18a12 100644 --- a/NewHorizons/External/Configs/TitleScreenConfig.cs +++ b/NewHorizons/External/Configs/TitleScreenConfig.cs @@ -6,15 +6,24 @@ using Newtonsoft.Json; namespace NewHorizons.External.Configs { + /// + /// Allows you to configure the title screen with custom music, skyboxes, and loading props from asset bundles. + /// You can define a list of title screen configurations, with different persistent condition/ship log facts required to display them. + /// [JsonObject] public class TitleScreenConfig { /// - /// Create title screens + /// Create title screens. + /// The last title screen in the list with its display conditions (persistent condition and/or ship log) met will be displayed if this mod + /// is chosen to be shown on the main menu. /// public TitleScreenInfo[] titleScreens = new TitleScreenInfo[0]; } + /// + /// A single title screen configuration + /// [JsonObject] public class TitleScreenInfo {