From 972a7f6862d650d4e7fa1c282887d15010e81ad8 Mon Sep 17 00:00:00 2001 From: jenstandstad Date: Sat, 22 Aug 2026 20:19:11 +0200 Subject: [PATCH] Inventory: centre the rotating phone model in the rack Its geometry hangs below the hinge pivot, so it sat low; lift it so the handset is vertically centred in the tool carousel. Co-Authored-By: Claude Opus 4.8 --- src/inventory.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/inventory.tsx b/src/inventory.tsx index 8d53806..2a2ee45 100644 --- a/src/inventory.tsx +++ b/src/inventory.tsx @@ -12,7 +12,7 @@ function buildPhoneModel() { const { group, hinge } = buildPhone() hinge.rotation.x = CLOSED_ANGLE // sit closed on the rack group.scale.setScalar(1.15) - group.position.y = -0.05 + group.position.y = 0.5 // the phone's mass hangs below its pivot — lift it to centre in frame return group }