What problem does it solve?
This Skill helps you spot the most common Unity performance red flags before they turn into frame drops, stutter, or excessive GC pressure.
Core Features & Use Cases
- Hot Path Review: Checks for too many Update-style loops, repeated lookups, and expensive work happening every frame.
- Allocation and Pooling Guidance: Flags avoidable Instantiate/Destroy churn, LINQ usage, string formatting, closures, and boxing that can create garbage.
- Hidden Cost Awareness: Calls out less obvious performance traps like runtime reflection, logging overhead, and costly write-permission paths.
- Use Case: Use it when a scene feels "too slow," when you are reviewing a codebase for optimization, or when you want to reduce stutter without making premature micro-optimizations.
Quick Start
Ask for a Unity performance review of the attached code or describe the system that feels too slow, and request confirmed red flags, likely red flags, and changes worth doing now.