feat: Add player markers to the scene for better visibility

This commit is contained in:
MayaTheShy
2026-02-20 00:19:45 -05:00
parent 9202094de9
commit baa807ed2a

View File

@@ -662,6 +662,11 @@ function Scene() {
</React.Fragment>
))}
{/* Players */}
{players.map((player) => (
<PlayerMarker key={player.playerID} player={player} />
))}
{/* Camera controls */}
<OrbitControls
target={centerPoint}