From a5019052278b32637663b3ba69c705451e950c8a Mon Sep 17 00:00:00 2001 From: yukirij Date: Sun, 1 Sep 2024 17:42:25 -0700 Subject: [PATCH] Move handle positions further from the board. --- www/js/interface.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/js/interface.js b/www/js/interface.js index 2ab4e69..78a5871 100644 --- a/www/js/interface.js +++ b/www/js/interface.js @@ -466,11 +466,11 @@ const INTERFACE = { let handle_pos = [ new MATH.Vec2( basis_x + (radius * 12), - basis_y - (11 * gui_scale) + basis_y - (11.5 * gui_scale) ), new MATH.Vec2( basis_x + (radius * 12), - basis_y + (3 * gui_scale) + basis_y + (3.5 * gui_scale) ), ];