From 4ad1eda9c28f48da913a913f153c6ed9d0e71827 Mon Sep 17 00:00:00 2001 From: Cees-Jan Kiewiet Date: Sat, 19 Dec 2020 17:05:42 +0100 Subject: [PATCH] Tweak scaling range Tweak the scaling range to have smoother scaling and dropping the ten times a second option as it causes too much lagging. --- src/EventLoopBridge.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/EventLoopBridge.php b/src/EventLoopBridge.php index dd82d79..bbc2172 100644 --- a/src/EventLoopBridge.php +++ b/src/EventLoopBridge.php @@ -25,8 +25,10 @@ final class EventLoopBridge { private const DEFAULT_SCALE_RANGE = [ - 0.1, 0.01, + 0.0075, + 0.0050, + 0.0025, 0.001, ];