- Unity Game Optimization
- Dr. Davide Aversa Chris Dickinson
- 115字
- 2021-06-24 12:13:08
Reducing serialized object size
We should aim to make our serialized objects as small as possible or partition them into smaller data pieces we combine together piece by piece so that they can be loaded one piece at a time over time. This can be tricky to manage for Prefabs since Unity does not inherently support nested Prefabs, and so we would be implementing such a system ourselves, which is a notoriously difficult problem to solve in Unity. UI Prefabs are good candidates for separating into smaller pieces since we don't normally need the entire UI at any given moment, and so we can usually afford to load them in one piece at a time.
推薦閱讀
- WebAssembly實戰
- 兩周自制腳本語言
- HTML5 Mobile Development Cookbook
- Java Web開發技術教程
- Redis Essentials
- 精通Linux(第2版)
- 高級語言程序設計(C語言版):基于計算思維能力培養
- Advanced Oracle PL/SQL Developer's Guide(Second Edition)
- Learning ArcGIS for Desktop
- 從Java到Web程序設計教程
- CRYENGINE Game Development Blueprints
- Managing Microsoft Hybrid Clouds
- App Inventor 2 Essentials
- 寫給大家看的Midjourney設計書
- Julia High Performance(Second Edition)