feat move debug cube with remote hand tracking

This commit is contained in:
Tom Boullay
2026-04-27 16:07:54 +02:00
parent fa8bc229c3
commit 9c602cdc63
10 changed files with 430 additions and 5 deletions
+27
View File
@@ -79,3 +79,30 @@ canvas {
color: rgba(255, 255, 255, 0.85);
letter-spacing: 0.03em;
}
.hand-tracking-overlay {
position: fixed;
right: 16px;
bottom: 16px;
z-index: 20;
display: flex;
flex-direction: column;
gap: 4px;
min-width: 180px;
padding: 12px;
color: rgba(255, 255, 255, 0.9);
background: rgba(4, 7, 13, 0.78);
border: 1px solid rgba(255, 255, 255, 0.18);
border-radius: 8px;
font-size: 12px;
pointer-events: none;
}
.hand-tracking-overlay strong {
color: white;
font-size: 13px;
}
.hand-tracking-overlay__error {
color: #fca5a5;
}