- Mastering Unity 2D Game Development
- Simon Jackson
- 204字
- 2021-09-03 09:44:57
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: "Using a path-like name such as playerScene1BounceToWallScript
."
A block of code is set as follows:
void OnSceneGUI() { CameraLookAt targetScript = (CameraLookAt)target; targetScript.cameraTarget = Handles.PositionHandle(targetScript.cameraTarget, Quaternion.identity); if (GUI.changed) EditorUtility.SetDirty(target); }
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are highlighted:
void OnSceneGUI()
{
CameraLookAt targetScript = (CameraLookAt)target;
targetScript.cameraTarget = Handles.PositionHandle(targetScript.cameraTarget, Quaternion.identity);
Handles.SphereCap(0, targetScript.cameraTarget, Quaternion.identity, 2);
if (GUI.changed)
EditorUtility.SetDirty(target);
}
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: "You can easily change the profile that the editor is using at any time by navigating to Edit | Project Settings| Editor and changing the Default Behavior Mode option."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
- Intel FPGA/CPLD設計(基礎篇)
- 用“芯”探核:龍芯派開發實戰
- Learning SQL Server Reporting Services 2012
- 顯卡維修知識精解
- 數字道路技術架構與建設指南
- BeagleBone By Example
- 深入淺出SSD:固態存儲核心技術、原理與實戰
- INSTANT ForgedUI Starter
- Rapid BeagleBoard Prototyping with MATLAB and Simulink
- Arduino BLINK Blueprints
- Wireframing Essentials
- 筆記本電腦芯片級維修從入門到精通(圖解版)
- 3D Printing Blueprints
- Mastering Machine Learning on AWS
- Blender 3D By Example