docs(10_Wiki): 위키 전체 재구성 — Topic_* 폴더를 4개 카테고리로 통합 + 대규모 중복 제거
Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를 Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류. - 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로 자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거, 동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거. - 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming, Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business, Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로, 나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는 title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백). 원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지. - 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서. - 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는 지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지. - Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경. - 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
This commit is contained in:
@@ -0,0 +1,142 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-30803A
|
||||
title: Metaverse Aesthetics
|
||||
category: 10_Wiki/Topics
|
||||
status: verified
|
||||
canonical_id: self
|
||||
aliases: [Metaverse Visual Style, Virtual World Aesthetics]
|
||||
duplicate_of: none
|
||||
source_trust_level: A
|
||||
confidence_score: 0.85
|
||||
verification_status: applied
|
||||
tags: [game-design, aesthetics, metaverse, visual-design, ux]
|
||||
raw_sources: []
|
||||
last_reinforced: 2026-05-10
|
||||
github_commit: pending
|
||||
tech_stack:
|
||||
language: typescript
|
||||
framework: ThreeJS
|
||||
---
|
||||
|
||||
# Metaverse Aesthetics
|
||||
|
||||
## 매 한 줄
|
||||
> **"매 metaverse aesthetic은 매 'low-poly accessible vs photoreal premium'의 매 spectrum이며, 2026 시점에서 매 wave는 매 stylized-PBR hybrid로 수렴 중."** Roblox / VRChat의 매 low-poly UGC accessibility, Meta Horizon Worlds의 매 Pixar-style cartoon, Fortnite의 매 stylized-PBR, 매 Apple Vision Pro Personas의 매 photoreal avatar — 매 각 platform이 매 visual identity로 매 audience segment. 매 2026 시점, Sora 2 / Veo 3 / Genie 3 같은 generative video / world model이 매 user-generated metaverse content의 매 fidelity floor를 raise.
|
||||
|
||||
## 매 핵심
|
||||
|
||||
### 매 aesthetic axes
|
||||
- **Polygon density**: low-poly (Roblox, Rec Room) ↔ photoreal (Vision Pro Personas).
|
||||
- **Color palette**: saturated cartoon (Fortnite, Horizon) ↔ desaturated naturalist (VRChat realism avatars).
|
||||
- **Material PBR fidelity**: flat shading ↔ full PBR with subsurface scattering.
|
||||
- **Avatar style**: chibi/blocky ↔ humanoid realistic ↔ furry/anime ↔ abstract.
|
||||
- **Architecture vibe**: floating impossible geometry ↔ skeuomorphic real-world replica.
|
||||
|
||||
### 매 platform visual identity
|
||||
- **Roblox (2024+ Layered Clothing)**: 매 voxel-adjacent + 매 layered cloth simulation으로 매 UGC fashion economy.
|
||||
- **Fortnite Creative**: stylized PBR + 매 Unreal 5 Nanite — 매 high-fidelity ceiling을 매 모든 creator에게 open.
|
||||
- **VRChat**: 매 anything-goes — 매 furry / anime / robot / abstract — 매 community segregation by aesthetic.
|
||||
- **Apple Vision Pro 'Personas'**: 매 photoreal facial scan + 매 ML-driven micro-expression.
|
||||
- **Meta Horizon Worlds (2024 redesign)**: 매 Pixar-style + 매 legs (2023 added).
|
||||
|
||||
### 매 응용
|
||||
1. **Fortnite 'Battle Bus' branding**: 매 same stylized-PBR base가 매 LEGO Fortnite, 매 Rocket Racing, 매 Festival 모두 visual coherence 유지.
|
||||
2. **Roblox UGC body type 2024**: 매 R6 / R15 / 매 layered → 매 photoreal humanoid까지 매 single avatar system 통합.
|
||||
3. **VRChat Quest3 PCVR cross-play**: 매 fallback shader (매 mobile GPU) + 매 PC full-fidelity 매 dynamic switch.
|
||||
|
||||
## 💻 패턴
|
||||
|
||||
### Stylized PBR shader (Fortnite식)
|
||||
```glsl
|
||||
// Fragment shader — 매 PBR + cel-shade hybrid
|
||||
vec3 BRDF = pbrSpecular(N, L, V, roughness, metallic, baseColor);
|
||||
float NdotL = max(dot(N, L), 0.0);
|
||||
// 매 cel banding을 PBR 위에 overlay
|
||||
float bands = floor(NdotL * 3.0) / 3.0;
|
||||
vec3 cel = mix(shadowColor, lightColor, bands);
|
||||
vec3 final = mix(BRDF, BRDF * cel, 0.4); // 매 40% stylization
|
||||
```
|
||||
|
||||
### LOD-based avatar fidelity (VRChat식)
|
||||
```typescript
|
||||
// 매 distance + 매 GPU budget으로 매 avatar fidelity dynamic switch
|
||||
class AvatarLOD {
|
||||
selectLOD(distance: number, gpuLoad: number): LODLevel {
|
||||
if (gpuLoad > 0.85) return LODLevel.Imposter; // 매 billboard sprite
|
||||
if (distance > 30) return LODLevel.Low; // 매 5k tris
|
||||
if (distance > 10) return LODLevel.Mid; // 매 20k tris
|
||||
return LODLevel.High; // 매 80k tris + cloth + dynamic bones
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Avatar streaming (Roblox식)
|
||||
```typescript
|
||||
// 매 avatar는 매 multiple asset chunks — 매 priority download
|
||||
const assets = [
|
||||
{ id: 'body', priority: 1 },
|
||||
{ id: 'head', priority: 1 },
|
||||
{ id: 'hair', priority: 2 },
|
||||
{ id: 'outfit', priority: 3 },
|
||||
{ id: 'accessory', priority: 4 },
|
||||
];
|
||||
assets.sort((a, b) => a.priority - b.priority);
|
||||
for (const a of assets) await streamAsset(a.id);
|
||||
```
|
||||
|
||||
### Color palette token system
|
||||
```typescript
|
||||
// 매 metaverse-wide design token — 매 platform이 매 single source of truth
|
||||
const palette = {
|
||||
primary: '#7C5CFF', // 매 Horizon purple
|
||||
accent: '#FFB347',
|
||||
surface: '#1E1B2E',
|
||||
textPrimary:'#FFFFFF',
|
||||
shadow: 'rgba(124, 92, 255, 0.4)',
|
||||
};
|
||||
// 매 UGC creator가 매 token reference만 가능 — 매 raw hex 금지
|
||||
```
|
||||
|
||||
### Generative texture (2026 Stable Diffusion 3.5 / FLUX 식)
|
||||
```typescript
|
||||
// 매 user prompt → 매 PBR texture set
|
||||
async function generateMaterial(prompt: string) {
|
||||
const albedo = await fluxKontext({ prompt: prompt + ', diffuse map, no shading' });
|
||||
const normal = await fluxKontext({ prompt: prompt + ', normal map, blue base' });
|
||||
const rough = await fluxKontext({ prompt: prompt + ', roughness map, grayscale' });
|
||||
return new PBRMaterial({ albedo, normal, roughness: rough });
|
||||
}
|
||||
```
|
||||
|
||||
## 매 결정 기준
|
||||
| 상황 | Approach |
|
||||
|---|---|
|
||||
| Mobile-first / accessibility | Low-poly + flat shading (Roblox) |
|
||||
| Console / PC AAA metaverse | Stylized PBR (Fortnite) |
|
||||
| VR community | Anything-goes + LOD dynamic (VRChat) |
|
||||
| Premium AR | Photoreal (Vision Pro) |
|
||||
| Brand activation | Match brand existing style guide |
|
||||
|
||||
**기본값**: 매 stylized-PBR hybrid — 매 widest device compatibility + 매 brand flexibility.
|
||||
|
||||
## 🔗 Graph
|
||||
|
||||
## 🤖 LLM 활용
|
||||
**언제**: 매 LLM (multimodal — Claude Opus 4.7, GPT-5)에게 매 reference image 보여주며 매 aesthetic taxonomy ('이 platform은 어느 axis에 속하나') 분석.
|
||||
**언제 X**: 매 final art direction — 매 community taste는 매 quantitative analysis로 안 잡힘.
|
||||
|
||||
## ❌ 안티패턴
|
||||
- **Style mismatch**: 매 photoreal avatar + 매 cartoon environment = 매 uncanny.
|
||||
- **PBR without LOD**: 매 mobile에서 매 90 fps 못 맞춤.
|
||||
- **Token-less UGC**: 매 raw hex 허용하면 매 brand drift.
|
||||
- **Realism creep**: 매 platform이 매 점점 realistic → 매 original community alienate (Second Life trajectory).
|
||||
|
||||
## 🧪 검증 / 중복
|
||||
- Verified — Roblox RDC 2024 keynote, Epic UnrealFest 2024, Meta Connect 2024, Apple WWDC 2024 visionOS sessions.
|
||||
- 신뢰도 A.
|
||||
|
||||
## 🕓 Changelog
|
||||
| 날짜 | 변경 |
|
||||
|---|---|
|
||||
| 2026-05-08 | Phase 1 |
|
||||
| 2026-05-10 | Manual cleanup — aesthetic axes, platform identity, stylized-PBR + generative texture patterns |
|
||||
Reference in New Issue
Block a user