Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Getting Started with Unity 2018
Getting Started with Unity 2018

Getting Started with Unity 2018: A Beginner's Guide to 2D and 3D game development with Unity , Third Edition

Arrow left icon
Profile Icon Dr. Edward Lavieri Jr.
Arrow right icon
€8.99 €29.99
Full star icon Full star icon Half star icon Empty star icon Empty star icon 2.7 (7 Ratings)
eBook Mar 2018 336 pages 3rd Edition
eBook
€8.99 €29.99
Paperback
€36.99
Subscription
Free Trial
Renews at €18.99p/m
Arrow left icon
Profile Icon Dr. Edward Lavieri Jr.
Arrow right icon
€8.99 €29.99
Full star icon Full star icon Half star icon Empty star icon Empty star icon 2.7 (7 Ratings)
eBook Mar 2018 336 pages 3rd Edition
eBook
€8.99 €29.99
Paperback
€36.99
Subscription
Free Trial
Renews at €18.99p/m
eBook
€8.99 €29.99
Paperback
€36.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

Getting Started with Unity 2018

The Unity Interface

In Chapter 1, Downloading and Installing Unitywe explored game engines and took a quick look at four alternative game engines to help us appreciate Unity. We looked at the history of Unity and how it evolved from one release to the next. In addition, we discovered Unity's key capabilities and features. We covered Unity's system requirements for developing Unity games and the system requirements for running them. Finally, we downloaded and installed Unity.

In this chapter, we will examine Unity's primary views and windows; we will also cover layouts and the toolbar. The interface components covered in this chapter are the ones used most often. Additional interface components will be covered in subsequent chapters as new functionality and tools are introduced.

Specifically, we will cover the following components:

  • Screen Real Estate...

Screen real estate 

When we first launch Unity, we might be intimidated by all the areas, tabs, menus, and buttons on the interface. Unity is a complex game engine with a lot of functionality, so we should expect more components for us to interact with. If we break the interface down into separate components, we can examine each one independently to gain a thorough understanding of the entire interface.

As you can see here, we have identified six primary areas of the interface. We will examine each of these in subsequent sections. As you will quickly learn, this interface is customizable. The following screenshot shows the default configuration of the Unity user interface.

Overview of the Unity game engine user interface.

In the next sections, we will cover each of the following components indicated by the preceding screenshot:

  • Menu
  • Scene view
  • Game view
  • Project window
  • Hierarchy...

Menu

The Unity editor's main menu bar, as depicted here, consists of eight pull-down options. We will briefly review each menu option in this section. Additional details will be provided in subsequent chapters, as we start developing our Cucumber Beetle game:

Unity's menus are contextual. This means that only menu items pertinent to the currently selected object will be enabled. Other non-applicable menu items will appear as gray instead of black and not be selectable.

Starting with Unity 2018, an additional top menu is Mobile Input. This menu item allows you to toggle mobile input on and off.

Unity

The Unity menu item, shown here, gives us access to information about Unity, our software license, display options...

Scene view

Referring to the first screenshot in this chapter, the Scene view is typically in the center of the Unity editor and might be tabled alongside the Game view tab. 

The Scene view is where you will spend most of your time working on your game. You will build and manipulate your game levels here. Some of the actions you will take in this view are adding and modifying game characters, lights, cameras, and other objects related to your game. 

As shown in the following screenshot, the Scene view has a set of controls lining the top of the interface. This is referred to as the control bar:

An overview of these controls follows:

...
Icon Control Description
Render Mode Various drawing options that impact how things are seen in Scene view.
2D/3D This is a toggle between 2D and 3D views. 
Lighting Toggles lights on/off.
Audio Toggles audio on/off.

Game view

The Game view allows you to preview your game while you work on it in the editor. You do not manipulate your game in this view, but you can preview it. 

You can also play your game. To launch Game mode, you click the play button located in the top center of the toolbar:

You can make changes to your game while you are in Game mode. Any changes you make while in Game mode are temporary. Once you get out of Game mode, those changes will be automatically undone.

As shown in the following screenshot, the Game view has a set of controls lining the top of the interface. This is referred to as the control bar:

The following table includes each of the components of the aforementioned control bar. The image, name of control, and description are provided for each component:

Icon Control Description
Display If you have multiple cameras in your scene, you can change...

Project window

The Project window is one that you will use frequently and provides quick access to objects in your project. As you can see here, the Project window is organized in a hierarchical view on the left. Selecting a folder on the left reveals the contents in the panel on the right.

That panel displays breadcrumbs on top and has a slider in the bottom-right corner to control the size of the icons:

The Create drop-down menu in the top-left section of the Project window gives you quick access to creating a game asset in the current folder.

To the right of the Create drop-down menu is a search bar followed by three icons. The first two icons are Search by Type and Search by Label, respectively. The third icon allows you to save your search.

The contents of the Project window provided in this section are representative and not part of this book's game.
...

Hierarchy window

The Hierarchy window lists all GameObjects in the current scene. This is different than what is displayed in the Project window because a game project contains one or more scenes, and not every object in a project is in a scene. As you can see in the following screenshot, some items in the Hierarchy window have a triangle on the left. Clicking a triangle will expand the contents, showing child objects. Parenting, or subordinating GameObjects with one another, is important and something that you will gain exposure to as you start adding GameObjects to your game:

The Create drop-down menu in the top-left section of the Hierarchy window gives you quick access to creating game assets.

To the right of the Create drop-down menu is a search bar. Below the search bar and to the right is a menu icon. Clicking that icon reveals the following list of options:

As you can...

Inspector window 

The Inspector window is where we can inspect our GameObjects. You will remember that GameObjects are composed of more than one component, and those components are what make the GameObjects worth having in our games. 

This example screenshot shows a ThirdPersonController GameObject with 11 components. The gray triangles to the left of each component allow you to expand the component and make any desired changes to that component's properties:

When you select a GameObject in Scene view, the Hierarchy window, or the Project window, the Inspector window will display the selected GameObject's components and properties. Each component has a different set of properties.

At the bottom of the Inspector window, when a GameObject has been selected, you will see the Add Component button. Clicking this button allows you to add a component to the current...

Screen real estate 


When we first launch Unity, we might be intimidated by all the areas, tabs, menus, and buttons on the interface. Unity is a complex game engine with a lot of functionality, so we should expect more components for us to interact with. If we break the interface down into separate components, we can examine each one independently to gain a thorough understanding of the entire interface.

As you can see here, we have identified six primary areas of the interface. We will examine each of these in subsequent sections. As you will quickly learn, this interface is customizable. The following screenshot shows the default configuration of the Unity user interface.

Overview of the Unity game engine user interface.

In the next sections, we will cover each of the following components indicated by the preceding screenshot:

  • Menu
  • Scene view
  • Game view
  • Project window
  • Hierarchy window
  • Inspector window
  • Toolbar
  • Layouts

Note

Unity 2017 was the latest release when this book was published, so the screenshots...

Menu


The Unity editor's main menu bar, as depicted here, consists of eight pull-down options. We will briefly review each menu option in this section. Additional details will be provided in subsequent chapters, as we start developing our Cucumber Beetle game:

Unity's menus are contextual. This means that only menu items pertinent to the currently selected object will be enabled. Other non-applicable menu items will appear as gray instead of black and not be selectable.

Note

Starting with Unity 2018, an additional top menu is Mobile Input. This menu item allows you to toggle mobile input on and off.

Unity

The Unity menu item, shown here, gives us access to information about Unity, our software license, display options, module information, and access to preferences:

Accessing the UnityAbout Unity... menu option gives you access to the version of the engine you are running. There is additional information as well, but you would probably only use this menu option to check your Unity version.

The...

Scene view


Referring to the first screenshot in this chapter, the Scene view is typically in the center of the Unity editor and might be tabled alongside the Game view tab. 

The Scene view is where you will spend most of your time working on your game. You will build and manipulate your game levels here. Some of the actions you will take in this view are adding and modifying game characters, lights, cameras, and other objects related to your game. 

As shown in the following screenshot, the Scene view has a set of controls lining the top of the interface. This is referred to as the control bar:

An overview of these controls follows:

Icon

Control

Description

Render Mode

Various drawing options that impact how things are seen in Scene view.

2D/3D

This is a toggle between 2D and 3D views. 

Lighting

Toggles lights on/off.

Audio

Toggles audio on/off.

Effects

This control contains toggles for Skybox, Fog, Flares, Animated Materials, and Image Effects.

Gizmos

This control provides a large number of options for how...

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Learn to create immersive 3D games and Virtual Reality experiences with Unity 2018
  • Build custom scripts to make your game characters interactive
  • Explore and implement AritificiaI Intelligence techniques to bring your game to life

Description

The Unity game engine has revolutionized the gaming industry with its complete set of intuitive tools and rapid workflows, which can be used to create interactive 3D content. With Unity, you can scaffold your way from the basics and make make stunning interactive games. This book will guide you through the entire process of creating a 3D game, from downloading the Unity game engine to publishing your game. It not only gives you a strong foundation, but puts you on the path to game development. Beginning with an overview of the Unity engine and its interface, you will walk through the process of creating a game environment and learn how to use built-in assets, as well as assets created with third-party 3D modeling tools such as Blender. Moving on, you will create custom scripts to control non-player character behaviors and gameplay. You will master exciting concepts such as Heads-Up-Displays, mini-maps, game navigation, sound effects, and lighting effects. Next, you’ll learn how to create your first VR experience, right from setting up the project to image effects. You'll be familiarized with all the tools that Unity has to offer to create your own immersive VR experiences. Each section is a stepping stone toward the completion of the final game. By the end of the book, you'll have learned advanced topics such as cross-platform considerations which enable your games to run on multiple platforms.

Who is this book for?

If you are an aspiring game developer interested in learning Unity 2018 and becoming familiar with its core features, then this book is for you. No prior knowledge of Unity is required.

What you will learn

  • Set up your Unity development environment and navigate its tools
  • Import and use custom assets and asset packages to add characters to your game
  • Build a 3D game world with a custom terrain, water, sky, mountains, and trees
  • Animate game characters, using animation controllers, and scripting
  • Apply audio and particle effects to the game
  • Create intuitive game menus and interface elements
  • Customize your game with sound effects, shadows, lighting effects, and rendering options
  • Debug code and provide smooth error handling

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Mar 22, 2018
Length: 336 pages
Edition : 3rd
Language : English
ISBN-13 : 9781788832915
Vendor :
Unity Technologies
Languages :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Mar 22, 2018
Length: 336 pages
Edition : 3rd
Language : English
ISBN-13 : 9781788832915
Vendor :
Unity Technologies
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
€189.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts
€264.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 131.97
Unity 2018 Shaders and Effects Cookbook
€41.99
Practical Game Design
€52.99
Getting Started with Unity 2018
€36.99
Total 131.97 Stars icon
Banner background image

Table of Contents

15 Chapters
Downloading and Installing Unity Chevron down icon Chevron up icon
The Unity Interface Chevron down icon Chevron up icon
Designing the Game Chevron down icon Chevron up icon
Creating Our Terrain Chevron down icon Chevron up icon
Lights, Cameras, and Shadows Chevron down icon Chevron up icon
Creating and Importing 3D Objects for Our Game Chevron down icon Chevron up icon
Implementing Our Player Character Chevron down icon Chevron up icon
Implementing Our Non-Player Characters Chevron down icon Chevron up icon
Adding a Heads-Up Display Chevron down icon Chevron up icon
Scripting Our Points System Chevron down icon Chevron up icon
Scripting Victory and Defeat Chevron down icon Chevron up icon
Adding Audio and Visual Effects to Our Game Chevron down icon Chevron up icon
Optimizing Our Game for Deployment Chevron down icon Chevron up icon
Virtual Reality Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Half star icon Empty star icon Empty star icon 2.7
(7 Ratings)
5 star 42.9%
4 star 0%
3 star 0%
2 star 0%
1 star 57.1%
Filter icon Filter
Top Reviews

Filter reviews by




darcsider Feb 21, 2019
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Good book on Unity.
Amazon Verified review Amazon
Robert Wilkinson Sep 03, 2018
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Just what my son needed for school on Tuesday following the Labor Day weekend....ordered on late Friday and arrived as promised on Sunday.
Amazon Verified review Amazon
Dr. Q Apr 21, 2018
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Dr. Lavieri works and expertise on Unity is right on! His expertise is genuine and provides a great deal of knowledge and hard work. I enjoy using Unity to design and play games with. I find it very thorough and descriptive as to what happens when using Unity and how to master it. This is my only go to Unity book that I prefer and is #1 on my Unity read list!
Amazon Verified review Amazon
D. Cotting Nov 06, 2018
Full star icon Empty star icon Empty star icon Empty star icon Empty star icon 1
The scripts in this book are completely broken and unusable. Like another reviewer mentioned, I made it through around chapter 8, and it became completely unusable. Buyer beware.
Amazon Verified review Amazon
DC Aug 25, 2018
Full star icon Empty star icon Empty star icon Empty star icon Empty star icon 1
A lot of this tutorial is broken in Unity 2018, plus some of the associated media/files referenced in the chapters were missing. The resulting product is virtually unplayable. A lot is skipped and glossed over, but yet there's a lot of filler and repetition to increase the page count. Rife with typos and inconsistencies, the author clearly phoned this in. It gets worse as you progress. One would expect more from someone with a PhD.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.