unity-performance
Installation
SKILL.md
Unity Performance Profiling & Optimization
Based on Unity 6.3 LTS (6000.3) official documentation
Core Tools Overview
Unity provides several built-in and package-based tools for profiling and optimization:
| Tool | Access | Purpose |
|---|---|---|
| Unity Profiler | Window > Analysis > Profiler | CPU, GPU, memory, rendering metrics per frame |
| Memory Profiler | Package: com.unity.memoryprofiler |
Deep memory snapshots, comparison, leak detection |
| Frame Debugger | Window > Analysis > Frame Debugger | Inspect every draw call in a rendered frame |
| Profile Analyzer | Package: com.unity.performance.profile-analyzer |
Statistical analysis across many Profiler frames |
Unity Profiler
Related skills