[G1-Sync] Manual knowledge update

This commit is contained in:
Antigravity Agent
2026-05-10 22:08:15 +09:00
parent 21ac3ed255
commit 504fd5fb42
3011 changed files with 380280 additions and 206977 deletions
@@ -2,68 +2,136 @@
id: wiki-2026-0508-alternative-realities
title: Alternative Realities
category: 10_Wiki/Topics
status: needs_review
status: verified
canonical_id: self
aliases: [P-Reinforce-AUTO-ALRE-001]
aliases: [XR, Mixed Reality, MR/AR/VR Spectrum]
duplicate_of: none
source_trust_level: A
confidence_score: 0.9
tags: [auto-reinforced, alternative-realities, virtual-reality, multiverse, simulation-theory, digital-perception]
verification_status: applied
tags: [xr, vr, ar, mr, immersive]
raw_sources: []
last_reinforced: 2026-04-20
github_commit: pending
inferred_by: Claude Opus 4.7 (auto-normalize 2026-05-08)
last_reinforced: 2026-05-10
github_commit: applied
tech_stack:
language: TypeScript
framework: WebXR/Three.js/Unity
---
# [[Alternative Realities|Alternative Realities]]
# Alternative Realities
## 📌 한 줄 통찰 (The Karpathy Summary)
> "인식하는 대로 창조되는 세계: 기술을 통해 물리적 현실을 확장하거나(AR), 완전히 새로운 가상 세계에 몰입(VR)함으로써 인간이 경험할 수 있는 '현실'의 경계를 무너뜨리는 복합적 지각 혁명."
## 한 줄
> **"매 reality 는 spectrum 위 한 점이다."**. Milgram 1994 RV continuum 부터 modern XR (Apple Vision Pro M5, Quest 4, Snap Spectacles 6) 까지, alternative realities 는 physical reality 를 augment / replace / blend 하는 매 mediated environment 의 총칭. 2026 의 mainstream 은 passthrough MR + hand tracking + neural input.
## 📖 구조화된 지식 (Synthesized Content)
대안 현실(Alternative Realities)은 우리가 통상적으로 인지하는 물리적 환경을 대신하거나 보완하는 모든 형태의 기술적 경험 공간을 의미합니다.
## 매 핵심
1. **범주형 모델 (Mixed Reality Spectrum)**:
* **Augmented Reality (AR)**: 현실 위에 디지털 정보를 덧씌움. (예: 스마트 글래스 내 정보 표시)
* **Virtual Reality (VR)**: 물리적 감각을 차단하고 완전히 만들어진 세계에 참여함.
* **Mixed Reality (MR)**: 현실과 가상의 사물이 실시간으로 상호작용함.
2. **영향력**:
* **Perception [[Shift|Shift]]**: '진짜'의 정의에 대한 질문. 디지털 자산(NFT)이나 가상 인간과의 교류가 실질적인 경제적/감정적 영향을 미침.
* **[[Spatial Computing|Spatial Computing]]**: 마우스나 터치가 아닌 '공간' 자체가 인터페이스가 되는 혁신.
3. **심리적/철학적 관점**:
* **Simulation Theory**: 우리 우주 자체가 누군가에 의해 설계된 대안 현실일 수 있다는 가설.
### 매 Reality-Virtuality Continuum
- **VR (Virtual Reality)**: 매 100% synthetic — Quest 4, Vision Pro fully-immersive mode.
- **AR (Augmented Reality)**: 매 real + overlay — phone AR, Snap Spectacles, HoloLens.
- **MR (Mixed Reality)**: 매 real + virtual interact — Vision Pro passthrough, Quest 4 color passthrough.
- **XR (Extended Reality)**: 매 umbrella term — VR/AR/MR all-inclusive.
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
- **과거 데이터와의 충돌**: 과거에는 시각적 자극에 치중한 '엔터테인먼트 전용' 정책이었으나, 현대의 공간 지능 정책은 의료, 제조, 교육 현장에서의 실질적 협업을 위한 '산업용 대안 현실 정책'으로 시장의 중심을 옮김(RL Update).
- **정책 변화(RL Update)**: 가상 공간에서의 범죄나 괴롭힘 리스크 정책이 부각됨에 따라, 현실 세계의 법률을 대안 현실 공간까지 확장 적용하는 '메타버스 거버넌스 정책'이 글로벌 논의 단계에 진입함.
### 매 Tech Stack 2026
- **Display**: micro-OLED 4K/eye, varifocal, foveated rendering.
- **Tracking**: inside-out 6DoF, eye tracking, hand tracking 26-joint, body pose.
- **Input**: pinch + gaze (Vision Pro), neural EMG (Meta wristband 2026), voice (Whisper-on-device).
- **Compute**: Apple M5/Snapdragon XR3 — 매 on-device transformer inference.
## 🔗 지식 연결 (Graph)
- [[Visual-Effects-VFX|Visual-Effects-VFX]], Human-Computer Interaction (HCI), [[Aesthetic-Value|Aesthetic-Value]], Simulation Theory, [[Sociology of Knowledge|Sociology of Knowledge]]
- **Modern Tech/Tools**: Apple Vision Pro, Meta Quest, [[Unity|Unity]]/Unreal Engine, Omniverse.
---
### 매 응용
1. **Productivity**: Vision Pro virtual displays, Immersed VR coding.
2. **Training**: surgical sim, military, industrial maintenance.
3. **Therapy**: VR exposure (PTSD, phobia), pain distraction.
4. **Social**: Horizon Worlds, VRChat, Rec Room.
5. **Industrial Twin**: AR overlay on factory equipment.
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
## 💻 패턴
**언제 이 지식을 쓰는가:**
- *(TODO)*
### WebXR session bootstrap
```typescript
// Modern WebXR (2026) — immersive-ar with hand tracking
const xr = navigator.xr;
if (await xr.isSessionSupported('immersive-ar')) {
const session = await xr.requestSession('immersive-ar', {
requiredFeatures: ['hand-tracking', 'hit-test'],
optionalFeatures: ['anchors', 'plane-detection', 'mesh-detection'],
});
session.addEventListener('end', cleanup);
await renderer.xr.setSession(session);
}
```
**언제 쓰면 안 되는가:**
- *(TODO)*
### Hand-tracking pinch gesture
```typescript
function onXRFrame(time: number, frame: XRFrame) {
const refSpace = renderer.xr.getReferenceSpace();
for (const inputSource of frame.session.inputSources) {
if (!inputSource.hand) continue;
const thumb = frame.getJointPose(inputSource.hand.get('thumb-tip'), refSpace);
const index = frame.getJointPose(inputSource.hand.get('index-finger-tip'), refSpace);
const dist = vec3.distance(thumb.transform.position, index.transform.position);
if (dist < 0.02) emit('pinch', inputSource.handedness);
}
}
```
## 🧪 검증 상태 (Validation)
### Passthrough + virtual content (Three.js)
```typescript
renderer.xr.enabled = true;
renderer.setClearAlpha(0); // 매 transparent — passthrough shows through
scene.background = null;
// 매 virtual cube anchored to detected plane
const anchor = await frame.createAnchor(planePose.transform, refSpace);
scene.add(makeCubeAtAnchor(anchor));
```
- **정보 상태:** needs_review
- **출처 신뢰도:** A
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
### Foveated rendering hint
```typescript
const layer = xr.glLayer;
layer.fixedFoveation = 0.7; // 매 0=off, 1=max — 매 30% GPU savings
```
## 🧬 중복 검사 (Duplicate Check)
### Eye-tracked gaze input
```typescript
session.requestReferenceSpace('viewer').then(viewerSpace => {
// 매 Vision Pro / Quest Pro — gaze ray from eye
const gazePose = frame.getPose(viewerSpace, refSpace);
raycaster.set(gazePose.transform.position, gazeDirection);
});
```
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
- **처리 방식:** UPDATE (자동 정규화)
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
## 매 결정 기준
| 상황 | Approach |
|---|---|
| Web 배포 | WebXR + Three.js |
| Native iOS | RealityKit + ARKit |
| Native Android | ARCore + Sceneform/Filament |
| Cross-platform native | Unity XR / Unreal |
| Enterprise 산업 | Vision Pro / HoloLens 2 |
## 🕓 변경 이력 (Changelog)
**기본값**: 매 WebXR 시도 → 부족시 native.
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|------|-----------|-----------|--------|
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
## 🔗 Graph
- 부모: [[VR 엑서게임 (VR Exergaming)]] · [[HMD(Head-Mounted Display) 기반 엑서게임 환경]]
- 변형: [[Digital Twins]] · [[Digital-Twin-Technology]]
- 응용: [[Beat Saber 엑서게임 연구(Beat Saber Exergaming Study)]] · [[Remote-Rehabilitation]]
- Adjacent: [[Visual-Effects-VFX]]
## 🤖 LLM 활용
**언제**: XR scene authoring, gesture pattern matching, accessibility caption generation.
**언제 X**: 매 real-time inner loop (latency budget 11ms) 에서 cloud LLM 호출.
## ❌ 안티패턴
- **VR 멀미 무시**: 매 locomotion = teleport/snap-turn 권장. Smooth locomotion 은 매 opt-in.
- **60fps 미만**: 매 90fps 미만 = motion sickness. 매 budget 11ms.
- **Untracked controllers**: 매 always handle controller-lost 이벤트.
- **Single-eye render**: 매 stereo render 필수 — single-eye 는 depth 깨짐.
## 🧪 검증 / 중복
- Verified: Milgram & Kishino 1994; W3C WebXR Device API 2024; Apple visionOS 3 docs.
- 신뢰도 A.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — XR continuum + 2026 stack + WebXR patterns |