From 04664e5f9b1f85ca5dd5077afac30bac7b580b3f Mon Sep 17 00:00:00 2001 From: hippoz Date: Mon, 1 Nov 2021 02:10:22 +0200 Subject: [PATCH] further improve dampening values --- public/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/index.html b/public/index.html index 5854851..8931b30 100644 --- a/public/index.html +++ b/public/index.html @@ -13,8 +13,8 @@ window.onerror = e => domlog(` ERROR - ${e} `); const HOLDING_THRESHOLD_MS = 300; - const SCROLL_X_DAMPENING = 0.05; - const SCROLL_Y_DAMPENING = 0.06; + const SCROLL_X_DAMPENING = 0.03; + const SCROLL_Y_DAMPENING = 0.09; const loggerOfType = (components, type='log') => (...args) => { let str = '%c';