- Unity 3.x Game Development by Example Beginner's Guide
- Ryan Henson Creighton
- 276字
- 2021-04-02 18:33:54
Time for action – heading
- Action 1
- Action 2
- Action 3
Instructions often need some extra explanation so that they make sense, so they are followed with:
What just happened?
This heading explains the working of tasks or instructions that you have just completed.
You will also find some other learning aids in the book, including:
Pop quiz – heading
These are short multiple choice questions intended to help you test your own understanding.
Have a go hero – heading
These set practical challenges and give you ideas for experimenting with what you have learned.
You will also 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 are shown as follows: "The result is that the first time the Update
function is called the paddle appears to jump out of the way to two units along the X-axis."
A block of code is set as follows:
function Update () { renderer.enabled = false; }
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
GUI.BeginGroup (new Rect (Screen.width - clockBG.width - gap, gap, clockBG.width, clockBG.height)); GUI.DrawTexture (Rect (0,0, clockBG.width, clockBG.height), clockBG); GUI.EndGroup ();
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: "A new script is added to the Project panel. Name it MouseFollow".
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
- C++ Primer習(xí)題集(第5版)
- Spring 5.0 By Example
- 數(shù)據(jù)庫系統(tǒng)教程(第2版)
- 移動(dòng)UI設(shè)計(jì)(微課版)
- 深入淺出WPF
- Animate CC二維動(dòng)畫設(shè)計(jì)與制作(微課版)
- Effective Python Penetration Testing
- Hands-On Automation Testing with Java for Beginners
- SwiftUI極簡開發(fā)
- 大規(guī)模語言模型開發(fā)基礎(chǔ)與實(shí)踐
- Flink核心技術(shù):源碼剖析與特性開發(fā)
- HTML5與CSS3權(quán)威指南
- Professional JavaScript
- Python數(shù)據(jù)預(yù)處理技術(shù)與實(shí)踐
- Spring Boot學(xué)習(xí)指南:構(gòu)建云原生Java和Kotlin應(yīng)用程序