From baa807ed2ac64a7a1448b6772a94ae145e6ef884 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Fri, 20 Feb 2026 00:19:45 -0500 Subject: [PATCH] feat: Add player markers to the scene for better visibility --- client/src/components/Map3D.jsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/client/src/components/Map3D.jsx b/client/src/components/Map3D.jsx index d5167be..30c4315 100644 --- a/client/src/components/Map3D.jsx +++ b/client/src/components/Map3D.jsx @@ -662,6 +662,11 @@ function Scene() { ))} + {/* Players */} + {players.map((player) => ( + + ))} + {/* Camera controls */}