Skip to content

Commit

Permalink
explanitory > explanatory + flashs > flashes + wording changes
Browse files Browse the repository at this point in the history
  • Loading branch information
bopcityfan committed Nov 25, 2023
1 parent 41da91f commit fbe4487
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions source/funkin/options/categories/AppearanceOptions.hx
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ class AppearanceOptions extends OptionsScreen {
super("Appearance", "Change Appearance options such as Flashing menus...");
add(new NumOption(
"Framerate",
"Pretty self explanitory isn't it?",
"Pretty self explanatory, isn't it?",
30, // minimum
240, // maximum
10, // change
"framerate", // save name or smth
__changeFPS)); // callback
add(new Checkbox(
"Antialiasing",
"If unchecked, will disable antialiasing on every sprite. Can boost performances at the cost of sharper, more pixely sprites",
"If unchecked, will disable antialiasing on every sprite. Can boost performances at the cost of sharper, more pixely sprites.",
"antialiasing"));
add(new Checkbox(
"Colored Healthbar",
Expand All @@ -25,7 +25,7 @@ class AppearanceOptions extends OptionsScreen {
"week6PixelPerfect"));
add(new Checkbox(
"Flashing Menu",
"If unchecked, will disable menu flashing when you select an option in the Main Menu, and other flashs will be slower",
"If unchecked, will disable menu flashing when you select an option in the Main Menu, and other flashes will be slower.",
"flashingMenu"));
add(new Checkbox(
"Low Memory Mode",
Expand All @@ -41,7 +41,7 @@ class AppearanceOptions extends OptionsScreen {
#end
add(new Checkbox(
"Auto Pause",
"If checked, switching windows will pause the game",
"If checked, switching windows will pause the game.",
"autoPause"));
}

Expand Down
8 changes: 4 additions & 4 deletions source/funkin/options/categories/GameplayOptions.hx
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,27 @@ class GameplayOptions extends OptionsScreen {
super("Gameplay", 'Change Gameplay options such as Downscroll, Scroll Speed, Naughtyness...');
add(new Checkbox(
"Downscroll",
"If checked, notes will go from up to down instead of down to up, like if they were falling",
"If checked, notes will go from up to down instead of down to up, as if they're falling.",
"downscroll"));
add(new Checkbox(
"Ghost Tapping",
"If unchecked, trying to hit any strum that have no note that can be hit will cause a miss.",
"ghostTapping"));
add(new NumOption(
"Song Offset",
"Changes the offset at which the song should start",
"Changes the offset that songs should start with.",
-999, // minimum
999, // maximum
1, // change
"songOffset", // save name or smth
__changeOffset)); // callback
add(new Checkbox(
"Naughtyness",
"If unchecked, will censor Week 7 cutscenes",
"If unchecked, will censor the Week 7 cutscenes.",
"naughtyness"));
add(new Checkbox(
"Camera Zoom on Beat",
"If unchecked, will disable camera zooming every 4 beats",
"If unchecked, will stop the camera from zooming in every 4 beats",
"camZoomOnBeat"));
}
private function __changeOffset(offset) Conductor.songOffset = offset;
Expand Down
2 changes: 1 addition & 1 deletion source/funkin/options/categories/MiscOptions.hx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class MiscOptions extends OptionsScreen {
#end
add(new TextOption(
"Reset Save Data",
"Select this option to reset save data. This will remove all of your highscores",
"Select this option to reset save data. This will remove all of your highscores.",
function() {
// TODO: SAVE DATA RESETTING
}));
Expand Down

0 comments on commit fbe4487

Please sign in to comment.