f8b21af4be
10_Wiki/Topics 대규모 정리: - 오류 캡처/미완성 stub 문서 227개 제거 - 교차폴더 중복 43클러스터 병합 (63파일 → redirect) - 링크명 정규화: 깨진 링크 수정·redirect 직결·개념 매핑 ~2,400건 - 카테고리 MOC 6개 신규 생성 - Graph 섹션 미해결 related-keyword 링크 10,058건 제거 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
143 lines
6.1 KiB
Markdown
143 lines
6.1 KiB
Markdown
---
|
|
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 |
|