[G1-Sync] Manual knowledge update
This commit is contained in:
@@ -1,25 +1,146 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-30803A
|
||||
category: "[[10_Wiki/💡 Topics/General Knowledge]]"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - Metaverse Aesthetics"
|
||||
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 Aesthetics
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 지식 요약 정보 추출 중...
|
||||
## 매 한 줄
|
||||
> **"매 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.
|
||||
|
||||
## 📖 구조화된 지식 (Synthesized Content)
|
||||
본문 구조화 작업 중...
|
||||
## 매 핵심
|
||||
|
||||
## ⚠️ 모순 및 업데이트 (Contradictions & RL Update)
|
||||
- **과거 데이터와의 충돌:** 자동화 엔진에 의해 매핑된 지식으로, 추후 정밀 검증 필요.
|
||||
- **정책 변화:** General Knowledge 분야의 자동 자산화 수행.
|
||||
### 매 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.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
### 매 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).
|
||||
|
||||
- Raw Source: [[00_Raw/2026-04-20/Metaverse Aesthetics.md]]
|
||||
---
|
||||
### 매 응용
|
||||
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
|
||||
- 부모: [[Metaverse-Platforms]] · [[Game-Aesthetics]]
|
||||
- 변형: [[Avatar-Design]] · [[Stylized-Rendering]]
|
||||
- 응용: [[Fortnite-Visual-Language]] · [[Roblox-UGC-Economy]]
|
||||
- Adjacent: [[NPR-Rendering]] · [[Real-Time-PBR]]
|
||||
|
||||
## 🤖 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