Change from coordinates for drop animation.

This commit is contained in:
yukirij 2024-08-26 20:49:00 -07:00
parent 2eb6dbf7e1
commit 5f7b722bed

View File

@ -635,8 +635,8 @@ const INTERFACE = {
// Lerp between pool and board positions. // Lerp between pool and board positions.
case 1: { case 1: {
from_x = basis_x + (radius * 14); from_x = to_x;
from_y = basis_y - (9 - (2 * play.from)) * gui_scale; from_y = to_y - (gui_scale / 1.5);
} break; } break;
} }