Skip to content

Commit

Permalink
Merge pull request #2 from LSPECTRONIZTAR/settings-1
Browse files Browse the repository at this point in the history
Update settings
  • Loading branch information
LSPECTRONIZTAR authored Oct 8, 2024
2 parents 4c3f72e + 5e3ffef commit 06f7534
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 9 deletions.
10 changes: 5 additions & 5 deletions Game Assets/miscellanous/playerOptions.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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
}
],
Expand All @@ -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
},
{
Expand Down
16 changes: 12 additions & 4 deletions Game Assets/miscellanous/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,30 @@
"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
},
{
"name": "Master Volume",
"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
},
{
Expand Down Expand Up @@ -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
}
],
Expand Down

0 comments on commit 06f7534

Please sign in to comment.