- Unity 5 for Android Essentials
- Valera Cogut
- 210字
- 2021-07-16 20:49:59
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: "We can include other contexts through the use of the include
directive."
A block of code is set as follows:
using UnityEngine; public class YourClassName: MonoBehaviour { void OnCollisionExit (Collision collision) { Debug.Log ("OnCollisionExit :" + collision.gameObject.name); } }
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
using UnityEngine;
public class YourClassName: MonoBehaviour {
void OnCollisionExit (Collision collision) {
Debug.Log ("OnCollisionExit :" + collision.gameObject.name);
}
}
Any command-line input or output is written as follows:
# cp /usr/src/asterisk-addons/configs/cdr_mysql.conf.sample /etc/asterisk/cdr_mysql.conf
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 on the Next button moves you to the next screen."
- C語言程序設(shè)計(jì)教程
- Visual C++程序設(shè)計(jì)學(xué)習(xí)筆記
- JavaScript高效圖形編程
- Animate CC二維動(dòng)畫設(shè)計(jì)與制作(微課版)
- Git高手之路
- C語言從入門到精通(第4版)
- Learning Laravel 4 Application Development
- Java加密與解密的藝術(shù)
- WordPress Plugin Development Cookbook(Second Edition)
- Getting Started with Python Data Analysis
- Mastering Ext JS
- PHP與MySQL權(quán)威指南
- 零基礎(chǔ)看圖學(xué)ScratchJr:少兒趣味編程(全彩大字版)
- Redmine Cookbook
- Java高級程序設(shè)計(jì)