diff --git a/Game Assets/miscellanous/playerOptions.json b/Game Assets/miscellanous/playerOptions.json index 35506ac..83e9643 100644 --- a/Game Assets/miscellanous/playerOptions.json +++ b/Game Assets/miscellanous/playerOptions.json @@ -4,8 +4,8 @@ "name": "Note Distance", "description": "Adjusts the travel distance of notes during osu!standard gameplay (does not affect note reaction time).", "optionType": "slider", - "sliderRange": {"min": 150, "max": 600}, - "defaultValue": 150 + "sliderRange": {"min": 100, "max": 600}, + "defaultValue": 100 }, { "name": "Disable Mouse Buttons", @@ -36,14 +36,14 @@ "name": "Pause Buffer", "description": "Sets a buffer time before pausing the game to avoid accidental pauses.", "optionType": "slider", - "sliderRange": {"min": 0, "max": 5}, + "sliderRange": {"min": 0, "max": 5, "suffix": "s"}, "defaultValue": 1 }, { "name": "Unpause Buffer", "description": "Sets a buffer time before unpausing the game.", "optionType": "slider", - "sliderRange": {"min": 0, "max": 5}, + "sliderRange": {"min": 0, "max": 5, "suffix": "s"}, "defaultValue": 1 } ], @@ -52,7 +52,7 @@ "name": "Background Brightness", "description": "Adjusts the brightness of the background during gameplay to reduce distractions.", "optionType": "slider", - "sliderRange": {"min": 0, "max": 100}, + "sliderRange": {"min": 0, "max": 100 "suffix": "%"}, "defaultValue": 80 }, { diff --git a/Game Assets/miscellanous/settings.json b/Game Assets/miscellanous/settings.json index a90eb4b..ace3a62 100644 --- a/Game Assets/miscellanous/settings.json +++ b/Game Assets/miscellanous/settings.json @@ -4,14 +4,14 @@ "name": "Music Volume", "description": "Adjusts the volume of background music.", "optionType": "slider", - "sliderRange": {"min": 0, "max": 100}, + "sliderRange": {"min": 0, "max": 100, "suffix": "%"}, "defaultValue": 60 }, { "name": "SFX Volume", "description": "Adjusts the volume of sound effects.", "optionType": "slider", - "sliderRange": {"min": 0, "max": 100}, + "sliderRange": {"min": 0, "max": 100, "suffix": "%"}, "defaultValue": 60 }, { @@ -19,7 +19,15 @@ "description": "Adjusts the overall game volume.", "trollDescription": "Determines how loud The Master from Beat Saber OST 7 should speak.", "optionType": "slider", - "sliderRange": {"min": 0, "max": 100}, + "sliderRange": {"min": 0, "max": 100, "suffix": "%"}, + "defaultValue": 60 + }, + { + "name": "Audio Offset", + "description": "Adjusts the audio offset (in milliseconds) for gameplay.", + "trollDescription": "Determines how loud The Master from Beat Saber OST 7 should speak.", + "optionType": "slider", + "sliderRange": {"min": -1000, "max": 1000, "suffix": " ms", "customInput": true}, "defaultValue": 60 }, { @@ -57,7 +65,7 @@ "name": "Framerate Limit", "description": "Limits the frame rate of the game (gameplay only).", "optionType": "slider", - "sliderRange": {"min": 30, "max": 240}, + "sliderRange": {"min": 30, "max": 240, "suffix": " fps"}, "defaultValue": 120 } ],