Useful Plugins for Unity
July 11, 2026 · View on GitHub
A curated list of plugins, packages, and tools that help with (or are relevant to) optimization work in Unity projects.
This is a living document — it will grow over time. If you know a plugin worth adding, let me know and I'll credit your contribution.
Table of Contents
All Types
| Plugin / Package | What it does | Notes |
|---|---|---|
| Memory Profiler | Full memory snapshots with diffing | First-party package; essential for leak hunting |
| Profile Analyzer | Statistical comparison of profiler captures | First-party; quantitative before/after regression checks |
| Performance Testing Extension | Measure.Method / Measure.Frames for automated perf tests | Integrates with CI to flag regressions |
| Compilation Visualizer | Visualizes asmdef compilation order and dependencies | Audit compile-time bottlenecks |
| Build Report Inspector | Inspects build size per asset | Find what bloats your build |
| Addressables | Reference-counted async asset loading | The standard asset management layer; see the Unity Tools doc for the Profiler module tip |
| Graphy | Runtime FPS / memory / audio monitor overlay | Free, MIT; great for QA builds |
| Superluminal | External sampling CPU profiler | Not a plugin per se, but attaches to Unity/IL2CPP builds |
2D Games
| Plugin / Package | What it does | Notes |
|---|---|---|
| Sprite Atlas (built-in) | Batches sprites into shared textures | Remember: compress the atlas, not the source sprites (see Unity guide — UI section) |
| 2D PSD Importer | Imports layered PSB files directly | Keeps source files out of runtime atlas memory when configured correctly |
(section to be expanded)
3D Games
| Plugin / Package | What it does | Notes |
|---|---|---|
| UnityMeshSimplifier | Automatic mesh decimation / LOD generation | Free, MIT |
| Amplify Impostors | Bakes meshes into billboard impostors | Massive draw call and triangle savings for distant objects |
| GPU Instancer Pro | Indirect GPU instancing for vegetation/props/crowds | For pre-Unity 6 projects without GPU Resident Drawer |
(section to be expanded)