- Unity 2017 Game Optimization(Second Edition)
- Chris Dickinson
- 113字
- 2021-07-02 23:21:11
Reduce 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.
推薦閱讀
- INSTANT Mock Testing with PowerMock
- TypeScript入門與實戰
- 軟件架構設計:大型網站技術架構與業務架構融合之道
- Learning ASP.NET Core 2.0
- Servlet/JSP深入詳解
- INSTANT CakePHP Starter
- Learn React with TypeScript 3
- 大模型RAG實戰:RAG原理、應用與系統構建
- C語言程序設計
- Working with Odoo
- 微服務從小白到專家:Spring Cloud和Kubernetes實戰
- 現代C++編程實戰:132個核心技巧示例(原書第2版)
- 零基礎學HTML+CSS
- Python期貨量化交易實戰
- 深入實踐DDD:以DSL驅動復雜軟件開發