From 5f7b722bedd9e976eb4f8347205355d915e2c3e8 Mon Sep 17 00:00:00 2001 From: yukirij Date: Mon, 26 Aug 2024 20:49:00 -0700 Subject: [PATCH] Change from coordinates for drop animation. --- 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 b062e5f..237a3cb 100644 --- a/www/js/interface.js +++ b/www/js/interface.js @@ -635,8 +635,8 @@ const INTERFACE = { // Lerp between pool and board positions. case 1: { - from_x = basis_x + (radius * 14); - from_y = basis_y - (9 - (2 * play.from)) * gui_scale; + from_x = to_x; + from_y = to_y - (gui_scale / 1.5); } break; }