From fbe448709d404df57149301034464d84d78226c4 Mon Sep 17 00:00:00 2001 From: sev <85509162+seven-schmeckles@users.noreply.github.com> Date: Sat, 25 Nov 2023 02:54:10 -0600 Subject: [PATCH] explanitory > explanatory + flashs > flashes + wording changes --- source/funkin/options/categories/AppearanceOptions.hx | 8 ++++---- source/funkin/options/categories/GameplayOptions.hx | 8 ++++---- source/funkin/options/categories/MiscOptions.hx | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/source/funkin/options/categories/AppearanceOptions.hx b/source/funkin/options/categories/AppearanceOptions.hx index 591d9fcad..60fa4535b 100644 --- a/source/funkin/options/categories/AppearanceOptions.hx +++ b/source/funkin/options/categories/AppearanceOptions.hx @@ -5,7 +5,7 @@ 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 @@ -13,7 +13,7 @@ class AppearanceOptions extends OptionsScreen { __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", @@ -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", @@ -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")); } diff --git a/source/funkin/options/categories/GameplayOptions.hx b/source/funkin/options/categories/GameplayOptions.hx index 8adaabcef..1db039a52 100644 --- a/source/funkin/options/categories/GameplayOptions.hx +++ b/source/funkin/options/categories/GameplayOptions.hx @@ -8,7 +8,7 @@ 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", @@ -16,7 +16,7 @@ class GameplayOptions extends OptionsScreen { "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 @@ -24,11 +24,11 @@ class GameplayOptions extends OptionsScreen { __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; diff --git a/source/funkin/options/categories/MiscOptions.hx b/source/funkin/options/categories/MiscOptions.hx index 84605c2dd..2aecb20fd 100644 --- a/source/funkin/options/categories/MiscOptions.hx +++ b/source/funkin/options/categories/MiscOptions.hx @@ -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 }));