- 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.
推薦閱讀
- Vue 3移動(dòng)Web開(kāi)發(fā)與性能調(diào)優(yōu)實(shí)戰(zhàn)
- R語(yǔ)言經(jīng)典實(shí)例(原書(shū)第2版)
- JavaScript語(yǔ)言精髓與編程實(shí)踐(第3版)
- OpenShift在企業(yè)中的實(shí)踐:PaaS DevOps微服務(wù)(第2版)
- Python深度學(xué)習(xí):基于TensorFlow
- 精通MATLAB(第3版)
- 計(jì)算機(jī)應(yīng)用基礎(chǔ)教程(Windows 7+Office 2010)
- C語(yǔ)言程序設(shè)計(jì)習(xí)題與實(shí)驗(yàn)指導(dǎo)
- Instant Debian:Build a Web Server
- 零基礎(chǔ)學(xué)Scratch 3.0編程
- Secret Recipes of the Python Ninja
- Android應(yīng)用程序設(shè)計(jì)
- 陪孩子像搭積木一樣學(xué)編程:Python真好玩+Scratch趣味編程(全2冊(cè))
- 流程讓管理更高效:流程管理全套方案制作、設(shè)計(jì)與優(yōu)化
- ACE技術(shù)內(nèi)幕:深入解析ACE架構(gòu)設(shè)計(jì)與實(shí)現(xiàn)原理