Move handle positions further from the board.

This commit is contained in:
yukirij 2024-09-01 17:42:25 -07:00
parent b8a14f266c
commit a501905227

View File

@ -466,11 +466,11 @@ const INTERFACE = {
let handle_pos = [ let handle_pos = [
new MATH.Vec2( new MATH.Vec2(
basis_x + (radius * 12), basis_x + (radius * 12),
basis_y - (11 * gui_scale) basis_y - (11.5 * gui_scale)
), ),
new MATH.Vec2( new MATH.Vec2(
basis_x + (radius * 12), basis_x + (radius * 12),
basis_y + (3 * gui_scale) basis_y + (3.5 * gui_scale)
), ),
]; ];