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, folder names, filenames, file extensions, pathnames, and user input are shown as follows: " For this recipe, we have prepared the font that you need in a folder named Fonts in the 1362_01_01 folder."

URLs are shown as follows: Learn more about the Unity UI on their manual pages at http://docs.unity3d.com/Manual/UISystem.html.

A block of code is set as follows:

 void Start (){ textClock = GetComponent<Text>(); } void Update (){ DateTime time = DateTime.Now; string hour = LeadingZero( time.Hour ); string minute = LeadingZero( time.Minute ...

Get Unity 5.x Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.