Workflow: Large Scale & Team Projects
For projects with 10+ developers or >10GB of assets.
CI/CD Integration
You can run the analyzer as part of your Jenkins / GitHub Actions pipeline. Use the command line argument to run the scan and fail the build if circular dependencies are found.
Unity.exe -batchmode -executeMethod DependencyAnalyzer.Integ.BuildHooks.AnalyzeAndExit -projectPath .
Snapshot Comparison
- Baseline: Validated a “Good” build? Save a Snapshot (
.json) of the graph. Commit this to Git. - Review: Before merging a Pull Request, load the “Snapshot” and compare it with the current branch.
- Detect: The tool will highlight New Nodes in Green and Deleted Nodes in Red.
- Did the PR accidentally add a reference to a 4K texture?
- Did it unexpectedly link the Inventory System to the Audio System?
Use this to gatekeep your architecture quality.