From e494a82fea3bf99d1a72689f2813da082c65c43d Mon Sep 17 00:00:00 2001 From: Ben C Date: Wed, 15 Jan 2025 22:11:43 +0000 Subject: [PATCH] Updated Schemas --- .../Schemas/addon_manifest_schema.json | 48 ------------------- 1 file changed, 48 deletions(-) diff --git a/NewHorizons/Schemas/addon_manifest_schema.json b/NewHorizons/Schemas/addon_manifest_schema.json index f6c52366..a1e1d34a 100644 --- a/NewHorizons/Schemas/addon_manifest_schema.json +++ b/NewHorizons/Schemas/addon_manifest_schema.json @@ -38,9 +38,6 @@ "type": "string", "description": "The path to the addons subtitle for the main menu.\nDefaults to \"subtitle.png\".\nThe dimensions of the Echoes of the Eye subtitle is 669 x 67, so aim for that size" }, - "mainMenuConfig": { - "$ref": "#/definitions/MainMenuConfig" - }, "$schema": { "type": "string", "description": "The schema to validate with" @@ -82,51 +79,6 @@ } } } - }, - "MainMenuConfig": { - "type": "object", - "additionalProperties": false, - "properties": { - "menuTextTint": { - "description": "Colour of the text on the main menu", - "$ref": "#/definitions/MColor" - } - } - }, - "MColor": { - "type": "object", - "additionalProperties": false, - "properties": { - "r": { - "type": "integer", - "description": "The red component of this colour from 0-255, higher values will make the colour glow if applicable.", - "format": "int32", - "maximum": 2147483647.0, - "minimum": 0.0 - }, - "g": { - "type": "integer", - "description": "The green component of this colour from 0-255, higher values will make the colour glow if applicable.", - "format": "int32", - "maximum": 2147483647.0, - "minimum": 0.0 - }, - "b": { - "type": "integer", - "description": "The blue component of this colour from 0-255, higher values will make the colour glow if applicable.", - "format": "int32", - "maximum": 2147483647.0, - "minimum": 0.0 - }, - "a": { - "type": "integer", - "description": "The alpha (opacity) component of this colour", - "format": "int32", - "default": 255, - "maximum": 255.0, - "minimum": 0.0 - } - } } }, "$docs": {