From 993f2c1b3d228d4f7a366489377306093bd67566 Mon Sep 17 00:00:00 2001 From: "HRK.EXEX" <74143200+HRK-EXEX@users.noreply.github.com> Date: Tue, 24 Dec 2024 18:53:06 +0900 Subject: [PATCH] changed scroll speed on overlapped config --- source/options/GameplaySettingsSubState.hx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/options/GameplaySettingsSubState.hx b/source/options/GameplaySettingsSubState.hx index 645a6181..95b28d2e 100644 --- a/source/options/GameplaySettingsSubState.hx +++ b/source/options/GameplaySettingsSubState.hx @@ -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; @@ -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(){