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
Free Learning
Arrow right icon
Mastering Unity 2D Game  Development
Mastering Unity 2D Game  Development

Mastering Unity 2D Game Development: Using Unity 5 to develop a retro RPG , Second Edition

Arrow left icon
Profile Icon Dr. Ashley Godbold Profile Icon Jackson
Arrow right icon
₹799.99 ₹2919.99
Full star icon Full star icon Full star icon Half star icon Empty star icon 3.9 (12 Ratings)
eBook Oct 2016 506 pages 2nd Edition
eBook
₹799.99 ₹2919.99
Paperback
₹3649.99
Subscription
Free Trial
Renews at ₹800p/m
Arrow left icon
Profile Icon Dr. Ashley Godbold Profile Icon Jackson
Arrow right icon
₹799.99 ₹2919.99
Full star icon Full star icon Full star icon Half star icon Empty star icon 3.9 (12 Ratings)
eBook Oct 2016 506 pages 2nd Edition
eBook
₹799.99 ₹2919.99
Paperback
₹3649.99
Subscription
Free Trial
Renews at ₹800p/m
eBook
₹799.99 ₹2919.99
Paperback
₹3649.99
Subscription
Free Trial
Renews at ₹800p/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

Mastering Unity 2D Game Development

Chapter 2.  Building Your Project and Character

It's time to start putting the building blocks that will make up your game into Unity. We will start with setting up the project and then move on to building the main character. Setting up the main character is an important first step, as most of your game's core logic and framework generally centers on the main protagonist and highlights exactly how the player will interact with the game.

We will be creating two main locations for the character to explore: a 2.5D town in which she can interact with Non-Playable Characters (NPCs) and a world map in which she will encounter and battle enemies. To allow our character to interact with and explore these locations, we must first get our character into our project and give her the ability to move around the scenes. We must also get our project started the right way by setting up the project appropriately.

The following topics will be covered in this chapter:

  • Designing a good project...

Project overview and structure

Before you start your project, you should consider how you intend to set it up and architect your project in the long term. Far too many developers have created problems for themselves by just diving in rather than designing the outline for the project at the start.

Your game and your assets are not the only things to consider when starting a fresh project. Sure, you can start importing assets, creating scripts, and getting things running; most Proof of Concept (POC) projects start this way. Once your project is of a sufficient size and you start expanding on your initial concept, you'll realize that you have issues with regard to picking up items and putting them together. Then, you will start devising new ways to organize your project and eventually find that it's an unmanageable mess; nevertheless, you will stride on, taking longer and longer to produce new content or add new features.

The best advice one can give is to think about your entire...

Creating the project

Before you can start building the game in Unity, you need to start a new project. Select New at the top of Unity's Home Screen. When creating a 2D game, you want to ensure that you start the project in 2D mode by selecting the appropriate mode in the Unity's home screen, as shown in the following screenshot:

Creating the project

Unity's home screen

Note

Remember, if you accidentally set the mode to 3D, you can change this at any time for your project through Editor Settings, as discussed in the previous chapter.

After selecting Create project, you'll be brought to the Editor Window, as shown in the following screenshot:

Creating the project

Unity's Editor window

It's important to note that when you create a new project in Unity, you are creating a new folder that can be accessed through File Explorer (Windows) or the Finder (Mac OS X) with the following subfolders:

Creating the project

Now that we have created our project, let's create the folder structure for the project, as shown in the following...

Creating a scene

Every level or distinct area you create within Unity will be an individual scene. So, the start screen will be a scene, the town will be a scene, the map will be a scene, and so on.

We will have the following scenes in our game:

  • Start Screen
  • Town
  • Shop
  • Overworld
  • Battle Scene

When you start a new project in Unity, you will be given a blank scene that contains only a camera, as shown in the Hierarchy in the following screenshot:

Creating a scene

Tip

The Hierarchy displays a list of all the objects within a scene.

The initial scene will be unsaved, as you can see by the word Untitled in the area above the toolbar preceding the name of the project:

Creating a scene

To save the scene, select File | Save Scene. The first location we will design will be the town, so let's save the scene as Town.unity in the Scenes folder we created, as shown in the following screenshot:

Creating a scene

You should now see the scene showing up in your Assets folder and you will see the word Untitled replaced with Town, as shown in the following screenshot...

Sprite system

It's hard to get excited about a game project until the visual elements are in the scene. We will discuss how to bring our character in the game shortly, but first let's go over how to actually use Sprites in Unity. A brief overview of working with Sprites is given in the previous chapter, but now we will get more technical.

Importing sprites

The simplest way to import a sprite into a scene is to simply drag it from your File Explorer (Windows) or Finder (Mac OS X) into Unity's Project Window. Once the image file is brought into the project, clicking on the image will show its various import settings in the image's Inspector, as shown in the following screenshot:

Importing sprites

Image Inspector on Project window

Let's take a closer view at the various import settings of an image brought into a 2D project and discuss each of the properties. Here, I will discuss each setting presented in the following screenshot; however, I will discuss the Sprite Editor button a later...

GameObjects and components

In Unity, every object in your scene will be a GameObject. A GameObject in itself isn't much other than a container for holding a list of Components. Components are the individual properties that make a GameObject unique. When a GameObject is selected, you can view each of its Components from its Inspector.

The most basic GameObject is an empty GameObject, which will contain no components other than a Transform. The Transform component is essential to each GameObject, as it allows it to have a physical location, rotation, and scale in the scene, as shown in the following screenshot:

GameObjects and components

You can create other types of GameObjects by selecting from a list of possible GameObject, starting with and empty one and adding individual components, or adding components to a provided GameObject.

Since we are working in 2D, the majority of our GameObjects will be a Sprite GameObject.

Sprite GameObjects

To create a Sprite GameObject, select Create | 2D Object | Sprite, as shown...

Project overview and structure


Before you start your project, you should consider how you intend to set it up and architect your project in the long term. Far too many developers have created problems for themselves by just diving in rather than designing the outline for the project at the start.

Your game and your assets are not the only things to consider when starting a fresh project. Sure, you can start importing assets, creating scripts, and getting things running; most Proof of Concept (POC) projects start this way. Once your project is of a sufficient size and you start expanding on your initial concept, you'll realize that you have issues with regard to picking up items and putting them together. Then, you will start devising new ways to organize your project and eventually find that it's an unmanageable mess; nevertheless, you will stride on, taking longer and longer to produce new content or add new features.

The best advice one can give is to think about your entire project and...

Creating the project


Before you can start building the game in Unity, you need to start a new project. Select New at the top of Unity's Home Screen. When creating a 2D game, you want to ensure that you start the project in 2D mode by selecting the appropriate mode in the Unity's home screen, as shown in the following screenshot:

Unity's home screen

Note

Remember, if you accidentally set the mode to 3D, you can change this at any time for your project through Editor Settings, as discussed in the previous chapter.

After selecting Create project, you'll be brought to the Editor Window, as shown in the following screenshot:

Unity's Editor window

It's important to note that when you create a new project in Unity, you are creating a new folder that can be accessed through File Explorer (Windows) or the Finder (Mac OS X) with the following subfolders:

Now that we have created our project, let's create the folder structure for the project, as shown in the following screenshot and discussed previously...

Creating a scene


Every level or distinct area you create within Unity will be an individual scene. So, the start screen will be a scene, the town will be a scene, the map will be a scene, and so on.

We will have the following scenes in our game:

  • Start Screen

  • Town

  • Shop

  • Overworld

  • Battle Scene

When you start a new project in Unity, you will be given a blank scene that contains only a camera, as shown in the Hierarchy in the following screenshot:

Tip

The Hierarchy displays a list of all the objects within a scene.

The initial scene will be unsaved, as you can see by the word Untitled in the area above the toolbar preceding the name of the project:

To save the scene, select File | Save Scene. The first location we will design will be the town, so let's save the scene as Town.unity in the Scenes folder we created, as shown in the following screenshot:

You should now see the scene showing up in your Assets folder and you will see the word Untitled replaced with Town, as shown in the following screenshot...

Sprite system


It's hard to get excited about a game project until the visual elements are in the scene. We will discuss how to bring our character in the game shortly, but first let's go over how to actually use Sprites in Unity. A brief overview of working with Sprites is given in the previous chapter, but now we will get more technical.

Importing sprites

The simplest way to import a sprite into a scene is to simply drag it from your File Explorer (Windows) or Finder (Mac OS X) into Unity's Project Window. Once the image file is brought into the project, clicking on the image will show its various import settings in the image's Inspector, as shown in the following screenshot:

Image Inspector on Project window

Let's take a closer view at the various import settings of an image brought into a 2D project and discuss each of the properties. Here, I will discuss each setting presented in the following screenshot; however, I will discuss the Sprite Editor button a later section:

Note

If you make...

GameObjects and components


In Unity, every object in your scene will be a GameObject. A GameObject in itself isn't much other than a container for holding a list of Components. Components are the individual properties that make a GameObject unique. When a GameObject is selected, you can view each of its Components from its Inspector.

The most basic GameObject is an empty GameObject, which will contain no components other than a Transform. The Transform component is essential to each GameObject, as it allows it to have a physical location, rotation, and scale in the scene, as shown in the following screenshot:

You can create other types of GameObjects by selecting from a list of possible GameObject, starting with and empty one and adding individual components, or adding components to a provided GameObject.

Since we are working in 2D, the majority of our GameObjects will be a Sprite GameObject.

Sprite GameObjects

To create a Sprite GameObject, select Create | 2D Object | Sprite, as shown in the...

Left arrow icon Right arrow icon

Key benefits

  • Explore the new features of Unity 5 and recognize obsolete code and elements
  • Develop and build a complete 2D retro RPG with a conversation system, inventory, random map battles, full game menus, and sound
  • This book demonstrates how to use the new Unity UI system effectively through detailed C# scripts with full explanations

Description

The Unity engine has revolutionized the gaming industry, by making it easier than ever for indie game developers to create quality games on a budget. Hobbyists and students can use this powerful engine to build 2D and 3D games, to play, distribute, and even sell for free! This book will help you master the 2D features available in Unity 5, by walking you through the development of a 2D RPG framework. With fully explained and detailed C# scripts, this book will show you how to create and program animations, a NPC conversation system, an inventory system, random RPG map battles, and full game menus. After your core game is complete, you'll learn how to add finishing touches like sound and music, monetization strategies, and splash screens. You’ll then be guided through the process of publishing and sharing your game on multiple platforms. After completing this book, you will have the necessary knowledge to develop, build, and deploy 2D games of any genre!

Who is this book for?

This book is for anyone looking to get started developing 2D games with Unity 5. If you're already accomplished in Unity 2D and wish to expand or supplement your current Unity knowledge, or are working in 2D in Unity 4 and looking to upgrade Unity 5, this book is for you. A basic understanding of programming logic is needed to begin learning with this book, but intermediate and advanced programming topic are explained thoroughly so that coders of any level can follow along. Previous programming experience in C# is not required.

What you will learn

  • Create a 2D game in Unity 5 by developing a complete retro 2D RPG framework
  • Effectively manipulate and utilize 2D sprites
  • Create 2D sprite animations and trigger them effectively with code
  • Write beginning to advanced-level C# code using MonoDevelop
  • Implement the new UI system effectively and beautifully
  • Use state machines to trigger events within your game

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Oct 21, 2016
Length: 506 pages
Edition : 2nd
Language : English
ISBN-13 : 9781786462336
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 : Oct 21, 2016
Length: 506 pages
Edition : 2nd
Language : English
ISBN-13 : 9781786462336
Vendor :
Unity Technologies
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
₹800 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
₹4500 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 ₹400 each
Feature tick icon Exclusive print discounts
₹5000 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 ₹400 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 11,396.97
Mastering Unity 2D Game  Development
₹3649.99
Getting Started with Unity 5.x 2D Game Development
₹3649.99
Mastering Unity 5.x
₹4096.99
Total 11,396.97 Stars icon
Banner background image

Table of Contents

14 Chapters
1. Overview Chevron down icon Chevron up icon
2. Building Your Project and Character Chevron down icon Chevron up icon
3. Getting Animated Chevron down icon Chevron up icon
4. The Town View Chevron down icon Chevron up icon
5. Working with Unitys UI System Chevron down icon Chevron up icon
6. NPCs and Interactions Chevron down icon Chevron up icon
7. The World Map Chevron down icon Chevron up icon
8. Encountering Enemies and Running Away Chevron down icon Chevron up icon
9. Getting Ready to Fight Chevron down icon Chevron up icon
10. The Battle Begins Chevron down icon Chevron up icon
11. Shopping for Items Chevron down icon Chevron up icon
12. Sound and Music Chevron down icon Chevron up icon
13. Putting a Bow on It Chevron down icon Chevron up icon
14. Deployment and Beyond Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Full star icon Half star icon Empty star icon 3.9
(12 Ratings)
5 star 50%
4 star 8.3%
3 star 33.3%
2 star 0%
1 star 8.3%
Filter icon Filter
Top Reviews

Filter reviews by




yonatan Nov 02, 2019
Full star icon Full star icon Full star icon Full star icon Full star icon 5
this book is just great. all is explained from scratch and the books covers all the important topics for someone who wants to learn an end to end video game creation with unity. it gave me a lot of drive and ambition to create my own video game.
Amazon Verified review Amazon
ARH Apr 02, 2017
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This is hands down an excellent book. Most Unity books out there are hit or miss. This one is definitely a hit.If I were to say who the target audience is for this book. I would lean more towards the intermediate C# programmer and someone familiar with how Unity works. Although the author provides excellent information on the inner workings of Unity's 2D systems. There isn't much hand holding. The right balance is there for you to not get lost but to also stretch your knowledge at the end of each chapter. The author pretty much encourages the reader to push themselves and take the learned content further.*A dedicated and confident beginner could have a go at the text but prepared to push yourself if you are a newbie coder. It gets pretty heavy at times and that is a good thing!** I also haven't had to look up the errata after going through 3/4's of the book. The instructions are clear, focused, and the code works. Imagine that...For what it is worth this is about as complete of a book you can get on developing a 2D game with Unity. Not only do you walk away with knowing how to approach 2D game development. You're also provided with excellent tips and best practices for architecting your game and additional tips on how to avoid common rookie mistakes.I thoroughly have enjoyed this book thus far. Honestly, I almost passed on it because the base game is an RPG. I'm so glad I didn't pass it up as the knowledge gained is applicable beyond the genre itself.Definitely a joy to read.At the half way mark you'll already have an excellent grasp on how to approach 2D gaming with Unity.If other books have left you scratching your head or you're still lost in the woods. Then this book is your beacon for sure.Ashley. Please write more Unity books. Thank you for this one.
Amazon Verified review Amazon
H. Carson Nov 27, 2017
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Using this book heavily, teaching myself to develop a game.
Amazon Verified review Amazon
claudio scolastici Jan 24, 2017
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This book by Ashley Godbold is a very detailed guide for the game developer desiring to get the most out of Unity.Don't be fooled by the title referring to 2D games! Though the book actually contains a step by step guide for creating a full featured, RPG styled 2D game with Unity, it also provides useful resources and excellent programming techniques that put this manual a step beyond its competitors!An absolute "must have" for anyone willing to improve his skills with Unity and make better games.Sincerely recommended!
Amazon Verified review Amazon
Mr. Paul Goddard Aug 16, 2017
Full star icon Full star icon Full star icon Full star icon Full star icon 5
It's great. It has many pictures from Unity to clearly show what to do and a lot of good info about Unity.
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.