- 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...."
- GAE編程指南
- Learning Cython Programming(Second Edition)
- Machine Learning with R Cookbook(Second Edition)
- C/C++算法從菜鳥到達人
- 跟小海龜學Python
- Unity Virtual Reality Projects
- 面向STEM的Scratch創新課程
- Linux環境編程:從應用到內核
- 大模型RAG實戰:RAG原理、應用與系統構建
- Building Serverless Applications with Python
- 微服務架構深度解析:原理、實踐與進階
- 深入剖析Java虛擬機:源碼剖析與實例詳解(基礎卷)
- ArcGIS for Desktop Cookbook
- 代碼閱讀
- WildFly Cookbook