Files
DndGamePlayer/app/renderer/shared/tokens/TokenPathsOverlay.module.css
Ivan Fontosh 1ab6ffd593 feat(tokens): animated paths for scene and NPC tokens
Add path editor window, session playback on control/presentation, and RMB controls. Fix live pose clock so motion no longer freezes after ~250ms.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-14 08:48:41 +08:00

43 lines
682 B
CSS

.layer {
position: absolute;
inset: 0;
pointer-events: none;
z-index: 7;
overflow: visible;
}
.lineGlow {
stroke: rgba(40, 180, 255, 0.28);
stroke-width: 6;
stroke-linecap: round;
stroke-linejoin: round;
}
.line {
stroke: rgba(90, 210, 255, 0.92);
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
stroke-dasharray: 7 5;
}
.start {
fill: rgba(120, 230, 255, 0.95);
stroke: rgba(0, 0, 0, 0.45);
stroke-width: 1;
}
.closed {
stroke: rgba(255, 200, 80, 0.9);
stroke-width: 1.5;
}
.emphasized .line {
stroke: rgba(255, 220, 120, 0.95);
stroke-dasharray: none;
}
.emphasized .lineGlow {
stroke: rgba(255, 200, 80, 0.35);
}