← ClaudeAtlas

unreal-best-practiceslisted

Comprehensive best practices guide for modern Unreal Engine 5.x development. Covers Epic's strategic direction toward modern systems (GAS, Enhanced Input, StateTree, MetaSounds, Niagara, PCG, CommonUI, World Partition, Game Feature Plugins, Gameplay Tags), the "research first" philosophy of always checking for newer UE systems before implementing, C++ vs Blueprint decision making, data-driven design, asset management, project organization, naming conventions, performance optimization, and debugging with Unreal Insights. Use when the user asks about UE best practices, modern UE5 workflows, which system to use, old vs new UE systems, recommended approaches, project setup, code organization, performance tips, Blueprint vs C++ decisions, naming conventions, or when starting a new feature and needing guidance on the right UE system to use. Also triggers when the user asks whether there is a newer/better way to do something in Unreal Engine, or when comparing legacy systems against modern replacements. Covers depre
maystudios/claude-skills · ★ 21 · AI & Automation · score 79
Install: claude install-skill maystudios/claude-skills
# Unreal Engine 5.x Best Practices Guide ## The "Research First" Principle **Before implementing any gameplay system, always investigate whether Epic provides a newer, purpose-built system for it.** Epic Games continuously introduces modern frameworks that replace ad-hoc solutions. Using the latest recommended system yields better performance, easier networking, designer-friendly workflows, and future compatibility. **Workflow:** 1. Identify the problem domain (input, abilities, audio, particles, AI, UI, movement, etc.) 2. Check the [Modern Systems Quick Reference](#modern-systems-quick-reference) below 3. If uncertain, search Epic's documentation and the UE Public Roadmap for the latest system status 4. Prefer production-ready modern systems over legacy approaches 5. For experimental systems: evaluate maturity before committing -- use them in prototypes, not shipping builds **Why this matters:** Epic signals their direction through actions, not just announcements. When they rebuild the First/Third Person templates to use GAS and Enhanced Input, or when Fortnite ships with Game Feature Plugins and CommonUI, that is the clearest indicator of where the ecosystem is heading. ## Official Documentation (always consult for latest details) | Source | URL | |--------|-----| | **Epic Documentation Hub** | https://dev.epicgames.com/documentation/en-us/unreal-engine | | **UE Public Roadmap** | https://portal.productboard.com/epicgames/1-unreal-engine-public-roadmap | | **Lyra Samp