- 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.
- Microsoft Exchange Server PowerShell Cookbook(Third Edition)
- 大學(xué)計(jì)算機(jī)應(yīng)用基礎(chǔ)實(shí)踐教程
- C#完全自學(xué)教程
- Mastering Entity Framework
- React Native Cookbook
- 軟件測試項(xiàng)目實(shí)戰(zhàn)之性能測試篇
- 三維圖形化C++趣味編程
- C語言程序設(shè)計(jì)教程(第2版)
- MySQL 8 DBA基礎(chǔ)教程
- Python王者歸來
- PHP+MySQL+Dreamweaver動態(tài)網(wǎng)站開發(fā)實(shí)例教程
- 青少年學(xué)Python(第1冊)
- Vue.js 2 Web Development Projects
- PrimeFaces Blueprints
- C++程序設(shè)計(jì)教程