- Unity Game Optimization
- Dr. Davide Aversa Chris Dickinson
- 148字
- 2021-06-24 12:12:53
Conventions used
There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "These can be accessed through the UnityEngine.Profiling.Profiler class through its BeginSample() and EndSample() methods."
A block of code is set as follows:
void DoSomethingCompletelyStupid() {
Profiler.BeginSample("My Profiler Sample");
List<int> listOfInts = new List<int>();
for(int i = 0; i < 1000000; ++i) {
listOfInts.Add(i);
}
Profiler.EndSample();
}
Bold: Indicates a new term, an important word, or words that you see on screen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "When a Unity application is compiled in Development Mode."
Warnings or important notes appear like this.
Tips and tricks appear like this.
推薦閱讀
- ASP.NET Core:Cloud-ready,Enterprise Web Application Development
- Microsoft Exchange Server PowerShell Cookbook(Third Edition)
- Python數(shù)據(jù)分析基礎
- PyTorch自然語言處理入門與實戰(zhàn)
- Monitoring Elasticsearch
- Serverless架構
- Android玩家必備
- 微服務從小白到專家:Spring Cloud和Kubernetes實戰(zhàn)
- 編程菜鳥學Python數(shù)據(jù)分析
- 搞定J2EE:Struts+Spring+Hibernate整合詳解與典型案例
- Modern C++ Programming Cookbook
- Machine Learning for Developers
- Mastering Concurrency Programming with Java 9(Second Edition)
- Sails.js Essentials
- Learning Python Data Visualization