From c883ab8b879058035eb2d655474d7e52b615daea Mon Sep 17 00:00:00 2001 From: LSPECTRONIZTAR Date: Thu, 24 Oct 2024 17:40:55 -0400 Subject: [PATCH] Create customSongOptions.json Probably will be manually set in-game but just in case --- .../miscellanous/customSongOptions.json | 60 +++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 Game Assets/miscellanous/customSongOptions.json diff --git a/Game Assets/miscellanous/customSongOptions.json b/Game Assets/miscellanous/customSongOptions.json new file mode 100644 index 0000000..b5285f5 --- /dev/null +++ b/Game Assets/miscellanous/customSongOptions.json @@ -0,0 +1,60 @@ +{ + "General Information": [ + { + "name": "Song Name", + "optionType": "text" + }, + { + "name": "Song Artist", + "optionType": "text" + }, + { + "name": "Song Sub-Name", + "optionType": "text" + } + ], + "Resources": [ + { + "name": "Song", + "optionType": "audio" + }, + { + "name": "Cover", + "optionType": "image" + }, + { + "name": "Background", + "optionType": "image" + } + ], + "Timing": [ + { + "name": "Song BPM", + "optionType": "number" + }, + { + "name": "Song Offset", + "description": "Beatmap will start at the specified time (in seconds).", + "optionType": "number" + }, + { + "name": "Reaction Time", + "description": "Auto-changes whenever BPM is changed.", + "optionType": "number", + "difficulty": true + }, + { + "name": "Number of Keys", + "optionType": "slider", + "sliderRange": {"min": 1, "max": 9}, + "exclusive": "Mania", + "difficulty": true + }, + { + "name": "Difficulty Level", + "optionType": "slider", + "sliderRange": {"min": 0, "max": 10, "disableRounding": true}, + "difficulty": true + } + ] +}