- HTML5 Game Development with GameMaker
- Jason Lee Elliott
- 195字
- 2021-07-27 17:57:43
Conventions
In this book, you will find a number of styles of text 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: "Create a new Sound and name it snd_Collect
."
A block of code is set as follows:
mySpeed = 4; myDirection = 0; isAttacking = false; isWalking = false; health = 100; image_speed = 0.5;
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
isWalking = false;
if (keyboard_check(vk_right) && place_free(x + mySpeed, y))
{
x += mySpeed;
myDirection = 0;
sprite_index = spr_Player_WalkRight;
isWalking = true;
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "clicking the Next button moves you to the next screen".
- Learning OpenDaylight
- Cybersecurity:Attack and Defense Strategies
- Linux系統(tǒng)架構(gòu)與運(yùn)維實(shí)戰(zhàn)
- Learning Android Intents
- 精通Linux內(nèi)核開發(fā)
- 新手易學(xué):系統(tǒng)安裝與重裝
- Instant Optimizing Embedded Systems using Busybox
- 新手學(xué)電腦從入門到精通(Windows 10+Office 2016版)
- STM32庫(kù)開發(fā)實(shí)戰(zhàn)指南:基于STM32F4
- NetDevOps入門與實(shí)踐
- Python UNIX和Linux系統(tǒng)管理指南
- INSTANT Galleria Howto
- OpenVZ Essentials
- Web Penetration Testing with Kali Linux(Third Edition)
- Java EE 7 Developer Handbook