- Extending Unity with Editor Scripting
- Angelo Tadres
- 184字
- 2021-07-16 19:59:17
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "Create a script called LevelInspector.cs
inside the folder Editor
"
A block of code is set as follows:
public override void OnInspectorGUI() { DrawLevelDataGUI(); DrawLevelSizeGUI(); }
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
public override void OnInspectorGUI() {
DrawLevelDataGUI();
DrawLevelSizeGUI();
}
Any command-line input or output is written as follows:
$ git submodule update
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "Select the category Misc and then click on the Sign piece"
- Deploying Node.js
- Facebook Application Development with Graph API Cookbook
- Mastering JavaScript Object-Oriented Programming
- 深度學習經典案例解析:基于MATLAB
- Twilio Best Practices
- Linux命令行與shell腳本編程大全(第4版)
- Java面向對象程序設計
- 新一代SDN:VMware NSX 網絡原理與實踐
- 寫給程序員的Python教程
- C語言程序設計實訓教程與水平考試指導
- JavaScript+jQuery網頁特效設計任務驅動教程
- 從零開始學Android開發
- C語言程序設計教程
- Elasticsearch搜索引擎構建入門與實戰
- Swift 2 Design Patterns