- Unity 2020 By Example
- Robert Wells
- 113字
- 2021-06-11 17:57:11
Conventions used
There are a number of text conventions used throughout this book.
Code in text: 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: "Rename it Turtle."
A block of code is set as follows:
public class ObjectPool : MonoBehaviour
{
…
public void DeSpawn(Transform ObjectToDespawn)
{
ObjectToDespawn.gameObject.SetActive(false);
ObjectToDespawn.SetParent(transform);
ObjectToDespawn.position = Vector3.zero;
}
Bold: Indicates a new term, an important word, or words that you see onscreen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "Select the Android tab."
Tips or important notes
Appear like this.
- OpenStack Cloud Computing Cookbook(Third Edition)
- Web應用系統開發實踐(C#)
- 流量的秘密:Google Analytics網站分析與優化技巧(第2版)
- C和C++安全編碼(原書第2版)
- Three.js開發指南:基于WebGL和HTML5在網頁上渲染3D圖形和動畫(原書第3版)
- Android NDK Beginner’s Guide
- Python高效開發實戰:Django、Tornado、Flask、Twisted(第2版)
- C語言程序設計案例式教程
- Building an RPG with Unity 2018
- Visual FoxPro程序設計
- 深入RabbitMQ
- 學習正則表達式
- Java并發編程之美
- Photoshop CC移動UI設計案例教程(全彩慕課版·第2版)
- Ext JS 4 Plugin and Extension Development