- 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.
- 程序員面試白皮書
- Getting started with Google Guava
- 小程序開發原理與實戰
- RabbitMQ Cookbook
- Python極簡講義:一本書入門數據分析與機器學習
- JavaScript動態網頁編程
- BeagleBone Robotic Projects(Second Edition)
- Webpack實戰:入門、進階與調優(第2版)
- 創意UI Photoshop玩轉移動UI設計
- Visual C++從入門到精通(第2版)
- Java 11 and 12:New Features
- Kohana 3.0 Beginner's Guide
- Java EE 7 Development with WildFly
- C語言程序設計
- GO語言編程從入門到實踐