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
€18.99 per month
Full star icon Full star icon Half star icon Empty star icon Empty star icon 2.7 (7 Ratings)
Paperback 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
€18.99 per month
Full star icon Full star icon Half star icon Empty star icon Empty star icon 2.7 (7 Ratings)
Paperback 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 a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
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 : 9781788830102
Vendor :
Unity Technologies
Languages :
Tools :

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

Publication date : Mar 22, 2018
Length: 336 pages
Edition : 3rd
Language : English
ISBN-13 : 9781788830102
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

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.