Unity Build Report Analyzer
Parse Unity build logs to find largest assets and quick wins.
When Steam keeps showing your Unity game as Running after quit, use this heuristic survey plus an investigation checklist.
You tick what your build actually does; we rank common causes and append a practical triage list. Pair with Player.log triage when correlating with player logs.
Answer for your shipping build. This does not inspect your machine — it produces a structured checklist for why Steam may still show "Running" after exit.
Heuristic risk
NONE
## Investigation checklist ### On a repro machine 1. Exit the game normally; wait 30–60s. Does Steam still show **Running**? 2. Open Task Manager (Details): sort by **Parent PID** or use **Process Explorer** tree view. 3. Look for: `UnityCrashHandler`, your game name, WebView2, CEF, updater, launcher, or tool EXEs you spawn. 4. Note whether the stuck PID is your main player or a child; capture command line (Process Explorer → Properties). ### Code / design review - Single exit path: menu quit, Alt+F4, and OS close should all run the same shutdown sequence. - Cancel or complete pending `async` / threaded work; avoid new work after quit requested. - Native plugins: add logging around plugin `OnDestroy` / finalize paths. - If using `Application.wantsToQuit`, return false only when necessary and always resolve pending state. ### Steam-specific - Confirm players launch from Steam client (not only loose EXE) when testing **Running** state. - Compare behavior: Development vs Release, Mono vs IL2CPP. ### What to attach in a bug report - Screenshot of Process Explorer tree at hang time - `Player.log` tail from the same session - Build ID / branch
Loading interactive tool…
Parse Unity build logs to find largest assets and quick wins.
Version + pipeline + packages → ordered checklist with official Unity doc links and CUZUS notes.
Pick two Unity versions: heuristic diff/risk scores, subsystem heatmap, impact bars, package table, official doc links, shareable URL.
Goal → Assistant / Generators / Sentis + docs; editable prompt templates for sprites, icons, textures.
Inspect manifest.json, classify sources, and visualize dependencies.
Compare two profiler snapshots and rank regressions.