refactor(topics): 멀티 에이전트용 지식 재편 — _Common(공통 기본기) + Domain_* 구조
에이전트 8종(대화형/프로그래머 C·S/디자이너/설계자/기획자/QA/PD/PM)에게 [공통 기본 능력 + 롤별 Specialty] 2층으로 지식을 주입하기 위한 재분류. 문서 내용·포맷은 무수정, 폴더 이동만 (6,372개 문서 수 보존 확인). - Topic_Programming → Domain_Programming (내부 구조 보존) - Topic_Graphic → Domain_Design - Topic_Business → Domain_Product - Topic_General → Domain_General - _Common 신설: Math(구 Topic_Math_Specialty), Reasoning(구 General/From_Thinking & Reasoning), Reasoning_Creativity(구 General/From_창의성), Communication(Poetic_Blog_Writing + From_writing) - 타 도메인의 From_* 폴더는 유지 (출처 표기일 뿐, 이미 도메인에 맞게 분류된 문서) - 빈 폴더 정리 (memory/procedures) - 에이전트→폴더 매핑은 workspace의 .astra/agent-knowledge-map.json (9개 에이전트) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
+137
@@ -0,0 +1,137 @@
|
||||
---
|
||||
id: wiki-2026-0508-시각-전정-충돌-visual-vestibular-confl
|
||||
title: 시각-전정 충돌(Visual-vestibular conflict)
|
||||
category: 10_Wiki/Topics
|
||||
status: verified
|
||||
canonical_id: self
|
||||
aliases: [VVC, visual-vestibular mismatch, sensory conflict]
|
||||
duplicate_of: none
|
||||
source_trust_level: A
|
||||
confidence_score: 0.95
|
||||
verification_status: applied
|
||||
tags: [vr, perception, sickness, vestibular]
|
||||
raw_sources: []
|
||||
last_reinforced: 2026-05-10
|
||||
github_commit: pending
|
||||
tech_stack:
|
||||
language: any
|
||||
framework: vr
|
||||
---
|
||||
|
||||
# 시각-전정 충돌(Visual-vestibular conflict)
|
||||
|
||||
## 매 한 줄
|
||||
> **"매 visual motion 과 vestibular system 의 input mismatch 가 sickness 를 유발한다"**. Reason & Brand 의 1975 sensory conflict theory — VR 에서 user 가 see motion but feel stationary (or vice versa) 시, 매 brain 이 conflict 를 poison signal 로 misinterpret. 매 modern VR 의 #1 design constraint.
|
||||
|
||||
## 매 핵심
|
||||
|
||||
### 매 메커니즘
|
||||
- **시각 cue**: optic flow 가 forward motion 을 indicate.
|
||||
- **전정 cue**: 머리 actual movement 가 zero (sitting still).
|
||||
- **Mismatch detection**: vestibular nuclei 가 conflict 를 detect.
|
||||
- **Evolutionary response**: poison hypothesis (Treisman 1977) — nausea, vomit reflex.
|
||||
|
||||
### 매 영향 요소
|
||||
- **FOV**: wider FOV → 매 stronger optic flow → 매 worse VVC.
|
||||
- **Acceleration**: linear acceleration > constant velocity.
|
||||
- **Yaw rotation**: smooth turning 이 worst (snap turn 으로 mitigate).
|
||||
- **Latency**: motion-to-photon > 20ms 시 sickness 가속.
|
||||
|
||||
### 매 응용 (mitigation)
|
||||
1. Teleportation locomotion (no continuous motion).
|
||||
2. Vignette / tunneling on movement.
|
||||
3. Snap turn (e.g., 30° increments).
|
||||
4. High refresh rate (90Hz+, 2026 standard 120Hz).
|
||||
5. Cockpit / static reference frame.
|
||||
|
||||
## 💻 패턴
|
||||
|
||||
### Vignette on locomotion (Three.js)
|
||||
```typescript
|
||||
import * as THREE from "three";
|
||||
|
||||
const vignette = new THREE.ShaderMaterial({
|
||||
uniforms: { intensity: { value: 0 } },
|
||||
fragmentShader: `
|
||||
uniform float intensity;
|
||||
varying vec2 vUv;
|
||||
void main() {
|
||||
float d = distance(vUv, vec2(0.5));
|
||||
gl_FragColor = vec4(0., 0., 0., smoothstep(0.3, 0.7, d) * intensity);
|
||||
}`
|
||||
});
|
||||
|
||||
function onLocomotion(speed: number) {
|
||||
vignette.uniforms.intensity.value = THREE.MathUtils.clamp(speed / 5, 0, 0.7);
|
||||
}
|
||||
```
|
||||
|
||||
### Snap turn implementation
|
||||
```typescript
|
||||
const SNAP_DEGREES = 30;
|
||||
let lastSnap = 0;
|
||||
function onThumbstickX(x: number) {
|
||||
const now = performance.now();
|
||||
if (Math.abs(x) > 0.7 && now - lastSnap > 250) {
|
||||
camera.rotation.y -= Math.sign(x) * THREE.MathUtils.degToRad(SNAP_DEGREES);
|
||||
lastSnap = now;
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Teleport locomotion
|
||||
```typescript
|
||||
function teleport(target: THREE.Vector3) {
|
||||
fadeToBlack(100);
|
||||
setTimeout(() => {
|
||||
rig.position.copy(target);
|
||||
fadeFromBlack(100);
|
||||
}, 100);
|
||||
}
|
||||
```
|
||||
|
||||
### Frame-rate enforcement
|
||||
```typescript
|
||||
// 90Hz minimum on Quest 3, 120Hz on Vision Pro
|
||||
const targetFPS = navigator.userAgent.includes("Vision") ? 120 : 90;
|
||||
renderer.setAnimationLoop((t, frame) => {
|
||||
// skip work if budget exceeded
|
||||
});
|
||||
```
|
||||
|
||||
## 매 결정 기준
|
||||
| 상황 | Approach |
|
||||
|---|---|
|
||||
| Seated experience | continuous + vignette OK |
|
||||
| Standing / room scale | teleport + snap turn 권장 |
|
||||
| Racing / cockpit sim | static cockpit ref → 매 reduces VVC |
|
||||
| Audience first-time | always teleport default |
|
||||
| Pro user | option for smooth |
|
||||
|
||||
**기본값**: teleport + snap turn 30° + vignette on continuous motion.
|
||||
|
||||
## 🔗 Graph
|
||||
- 부모: [[VR Sickness]]
|
||||
- 변형: [[Vergence-Accommodation Conflicts]]
|
||||
- Adjacent: [[가상현실 멀미 (VR Sickness)]] · [[안구 운동 기능 (Oculomotor Functions)]]
|
||||
- 응용: [[가상현실(VR) 자전거 시뮬레이터]]
|
||||
|
||||
## 🤖 LLM 활용
|
||||
**언제**: locomotion 설계 review · sickness 원인 분석 · UX option 추천.
|
||||
**언제 X**: actual user testing 의 substitute (subjective experience 측정 필수).
|
||||
|
||||
## ❌ 안티패턴
|
||||
- **Smooth locomotion default**: 매 first-time user 의 30%+ 가 sick.
|
||||
- **No comfort options**: accessibility 실패.
|
||||
- **Frame drop tolerance**: 60Hz fallback → severe sickness.
|
||||
- **Forced rotation**: cinematic 의도 → 즉시 sick.
|
||||
|
||||
## 🧪 검증 / 중복
|
||||
- Verified (Reason & Brand 1975 · Stanney VR Handbook · Meta VR Comfort guidelines).
|
||||
- 신뢰도 A.
|
||||
|
||||
## 🕓 Changelog
|
||||
| 날짜 | 변경 |
|
||||
|---|---|
|
||||
| 2026-05-08 | Phase 1 |
|
||||
| 2026-05-10 | Manual cleanup — VVC mechanism + mitigation 코드 |
|
||||
Reference in New Issue
Block a user