id, title, category, status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, verification_status, tags, raw_sources, last_reinforced, github_commit, tech_stack
id
title
category
status
canonical_id
aliases
duplicate_of
source_trust_level
confidence_score
verification_status
tags
raw_sources
last_reinforced
github_commit
tech_stack
wiki-2026-0508-실시간-엔진-real-time-engine
실시간 엔진 (Real-Time Engine)
10_Wiki/Topics
verified
self
Real-Time Engine
RTE
Game Engine
Realtime Rendering
none
A
0.9
applied
game-engine
realtime
rendering
simulation
2026-05-10
pending
language
framework
cpp
unreal-unity-godot
실시간 엔진 (Real-Time Engine)
매 한 줄
"매 RTE 는 매 매 프레임 (16.67ms @ 60Hz, 매 8.33ms @ 120Hz) 안에 매 simulation + render 매 완료해야 한다 — 매 deadline 매 hard" . Gregory 의 매 Game Engine Architecture 가 매 canonical reference. 매 2026 modern engines: Unreal Engine 5.5 (Nanite, Lumen, MetaHuman), Unity 6 (HDRP, ECS/DOTS), Godot 4.4, Bevy (Rust ECS).
매 핵심
매 frame budget breakdown (60 Hz)
Input poll: <1 ms
Game logic / scripting: 2-4 ms
Physics: 2-4 ms
Animation / IK: 1-3 ms
Render submit (CPU): 1-3 ms
GPU render: 4-10 ms
Total: <16.67 ms
매 core subsystems
Renderer : scene graph, culling, rasterizer / RT.
Physics : rigid body, soft body, character controller.
Audio : 3D positional, mixing, DSP.
Animation : skeletal, blend tree, state machine.
Networking : client prediction, lag compensation.
Scripting / ECS : gameplay code.
Asset pipeline : import, baking, streaming.
매 응용
매 game (AAA / indie / mobile).
매 architecture viz / digital twin.
매 VR / AR experience.
매 simulation training.
💻 패턴
Fixed timestep + interpolation (Glenn Fiedler)
ECS (Bevy 0.15, Rust)
Frustum culling (renderer)
Spatial hash for broadphase
Client prediction + reconciliation (netcode)
Unreal Lumen / Nanite usage (high-level config)
매 결정 기준
Use case
Engine
매 AAA / cinematic
Unreal Engine 5.5
매 mobile / 2D / cross-platform
Unity 6
매 open source / lightweight
Godot 4.4
매 data-oriented / Rust
Bevy
매 web
three.js / Babylon.js
매 simulation (no rendering)
custom + physics lib
기본값 : 매 Unreal 5.5 (high fidelity) / Unity 6 (productivity).
🔗 Graph
🤖 LLM 활용
언제 : 매 ECS architecture design / 매 shader explanation / 매 netcode pattern.
언제 X : 매 production shader / 매 critical-path code — 매 profile 기반 review.
❌ 안티패턴
Variable timestep physics : 매 instability + 매 nondeterminism.
Single-threaded mainloop : 매 modern multi-core 미활용.
No frame budget : 매 random stutter / spike.
OOP-heavy hot path : 매 cache miss / 매 ECS 매 미적용.
🧪 검증 / 중복
Verified (Gregory, Game Engine Architecture 4e ; Akenine-Möller et al., Real-Time Rendering 5e ; Fiedler, Fix Your Timestep ).
신뢰도 A.
🕓 Changelog
날짜
변경
2026-05-08
Phase 1
2026-05-10
Manual cleanup — fixed-timestep / ECS / culling / netcode 패턴 추가