Performance: Build settings and scene order
MEDIUM IMPACT
This affects the initial loading time and memory usage of a Unity game by controlling which scenes load first and how many scenes are included in the build.
Only add necessary scenes to build settings and order them so the main scene loads first.Add all scenes to build settings regardless of usage and leave them unordered.| Pattern | Build Size Impact | Initial Load Time | Memory Usage | Verdict |
|---|---|---|---|---|
| All scenes included unordered | High (extra MBs) | Long (blocks rendering) | High | [X] Bad |
| Only needed scenes ordered | Low (minimal size) | Short (fast load) | Optimized | [OK] Good |