13 SVG icons covering stance indicators (walk/careful/sprint/crouch), status badges (health, perception), interaction prompts (talk/observe/ follow/examine), and inventory silhouettes (manifest, access token, comm log). All D-086 compliant: 1px stroke, #c8d0e0 chrome, round linecaps, minimal anchor points, no icon fonts, runtime-replaceable via ShaderMaterial. Sizes: 20×20 (stance/status), 16×16 (actions), 40×40 (inventory). Unblocks client #787. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
17 lines
787 B
XML
17 lines
787 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" width="20" height="20">
|
|
<!--
|
|
Status badge: PERCEPTION MODE
|
|
Design: geometric eye — diamond outline (4 straight lines) with centered circle pupil.
|
|
Diamond shape reinforces the insert/lattice aesthetic; no curves in the outer form.
|
|
Communicates: vision, awareness, active perception layer.
|
|
Deferred: mode-specific variants (thermal, camera feed) await #315 specs.
|
|
D-086: 1px stroke, #c8d0e0 chrome, minimal anchor points.
|
|
-->
|
|
<g stroke="#c8d0e0" stroke-width="1" stroke-linecap="round" stroke-linejoin="round" fill="none">
|
|
<!-- Diamond eye outline (4 straight edges) -->
|
|
<polygon points="10,3 18,10 10,17 2,10"/>
|
|
<!-- Pupil circle -->
|
|
<circle cx="10" cy="10" r="3"/>
|
|
</g>
|
|
</svg>
|