feat(players): app Players library and circular NPC tokens on scenes

Add userData players/teams, scene npcTokens with hex-inscribed sizing, session scale synced to presentation, and Playwright e2e coverage.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Ivan Fontosh
2026-07-30 13:38:35 +08:00
parent a3a03eb9e3
commit 101f595bac
57 changed files with 4176 additions and 317 deletions
@@ -0,0 +1,27 @@
.layer {
position: absolute;
inset: 0;
z-index: 9;
pointer-events: none;
}
.token {
position: absolute;
overflow: visible;
transform: translate(-50%, -50%);
pointer-events: none;
touch-action: none;
}
.token > * {
pointer-events: none;
}
.editable {
pointer-events: auto;
cursor: grab;
}
.editable:active {
cursor: grabbing;
}