- Practical Game AI Programming
- Micael DaGra?a
- 164字
- 2021-07-02 20:43:00
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: "The variables that we'll be using for now are Health, statePassive, stateAggressive, and stateDefensive."
A block of code is set as follows:
if (playerPosition == "triggerM")
{
transform.LookAt(playerSoldier); // Face the direction of the player
transform.position = Vector3.MoveTowards(transform.position,
buildingPosition.position, walkBack);
backwardsFire();
}
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: "In Unity we click under the Layers button to expand more options, and then we click where it says Edit Layers...."
- C程序設計簡明教程(第二版)
- Redis入門指南(第3版)
- Building a Home Security System with Raspberry Pi
- Developing Mobile Web ArcGIS Applications
- SQL語言從入門到精通
- 人人都是網站分析師:從分析師的視角理解網站和解讀數據
- Mastering Android Development with Kotlin
- 組態軟件技術與應用
- 從零開始學C#
- Python計算機視覺和自然語言處理
- Python數據可視化之美:專業圖表繪制指南(全彩)
- Scala Functional Programming Patterns
- Practical Predictive Analytics
- Spring Boot 2+Thymeleaf企業應用實戰
- C/C++程序設計教程