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 / PackageWhat it doesNotes
Memory ProfilerFull memory snapshots with diffingFirst-party package; essential for leak hunting
Profile AnalyzerStatistical comparison of profiler capturesFirst-party; quantitative before/after regression checks
Performance Testing ExtensionMeasure.Method / Measure.Frames for automated perf testsIntegrates with CI to flag regressions
Compilation VisualizerVisualizes asmdef compilation order and dependenciesAudit compile-time bottlenecks
Build Report InspectorInspects build size per assetFind what bloats your build
AddressablesReference-counted async asset loadingThe standard asset management layer; see the Unity Tools doc for the Profiler module tip
GraphyRuntime FPS / memory / audio monitor overlayFree, MIT; great for QA builds
SuperluminalExternal sampling CPU profilerNot a plugin per se, but attaches to Unity/IL2CPP builds

2D Games

Plugin / PackageWhat it doesNotes
Sprite Atlas (built-in)Batches sprites into shared texturesRemember: compress the atlas, not the source sprites (see Unity guide — UI section)
2D PSD ImporterImports layered PSB files directlyKeeps source files out of runtime atlas memory when configured correctly

(section to be expanded)

3D Games

Plugin / PackageWhat it doesNotes
UnityMeshSimplifierAutomatic mesh decimation / LOD generationFree, MIT
Amplify ImpostorsBakes meshes into billboard impostorsMassive draw call and triangle savings for distant objects
GPU Instancer ProIndirect GPU instancing for vegetation/props/crowdsFor pre-Unity 6 projects without GPU Resident Drawer

(section to be expanded)