Skip to content

Commit

Permalink
FIX YOUR GRAMMAR
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesisfeline authored Mar 12, 2024
1 parent 8fc4c17 commit 8059124
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions source/funkin/options/categories/GameplayOptions.hx
Original file line number Diff line number Diff line change
Expand Up @@ -9,30 +9,30 @@ class GameplayOptions extends OptionsScreen {
var offsetSetting:NumOption;

public override function new() {
super("Gameplay", 'Change Gameplay options such as Downscroll, Scroll Speed, Naughtyness...');
super("Gameplay", 'Change Gameplay options such as Downscroll, Scroll Speed, Naughtiness...');
add(new Checkbox(
"Downscroll",
"If checked, notes will go from up to down instead of down to up, as if they're falling.",
"If checked, notes will go from up to down instead of down to up, as if they're falling down.",
"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(offsetSetting = new NumOption(
"Song Offset",
"Changes the offset that songs should start with.",
"Changes the offset that songs should start with, great for Bluetooth headphones.",
-999, // minimum
999, // maximum
1, // change
"songOffset", // save name or smth
__changeOffset)); // callback
add(new Checkbox(
"Naughtyness",
"If unchecked, will censor the Week 7 cutscenes.",
"Naughtiness",
"If unchecked, will censor the cutscenes in Week 7.",
"naughtyness"));
add(new Checkbox(
"Camera Zoom on Beat",
"If unchecked, will stop the camera from zooming in every 4 beats",
"If unchecked, will stop the camera from zooming every measure, or 4 beats.",
"camZoomOnBeat"));
}

Expand Down Expand Up @@ -70,4 +70,4 @@ class GameplayOptions extends OptionsScreen {
});
super.close();
}
}
}

0 comments on commit 8059124

Please sign in to comment.