Skip to content

Commit

Permalink
changed scroll speed on overlapped config
Browse files Browse the repository at this point in the history
  • Loading branch information
HRK-EXEX committed Dec 24, 2024
1 parent 751c9d2 commit 993f2c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/options/GameplaySettingsSubState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class GameplaySettingsSubState extends BaseOptionsMenu
'ghostRange',
FLOAT);
option.displayFormat = '%v ms';
option.scrollSpeed = 1.0;
option.scrollSpeed = 0.1;
option.minValue = 0.001;
option.maxValue = 1000;
option.changeValue = 0.001;
Expand Down Expand Up @@ -255,7 +255,7 @@ class GameplaySettingsSubState extends BaseOptionsMenu
}

function onRangeUpdateRate(){
ghostRate.scrollSpeed = interpolate(1.0, 1000.0, (holdTime - 0.5) / 5.0, 6.0);
ghostRate.scrollSpeed = interpolate(0.1, 1000.0, (holdTime - 0.5) / 8.0, 5.0);
}

function onChangebgmVolume(){
Expand Down

0 comments on commit 993f2c1

Please sign in to comment.