Book Image

Unity 2D Game Development Cookbook

By : Claudio Scolastici
Book Image

Unity 2D Game Development Cookbook

By: Claudio Scolastici

Overview of this book

<p>Unity is a powerful game development engine that provides rich functionalities to create 2D and 3D games.</p> <p>Unity 2D Game Development Cookbook is a practical guide to creating games with Unity. The book aims to serve the purpose of exploring problematic concepts in Unity for 2D game development, offering over 50 recipes that are easy to understand and to implement, thanks to the step-by-step explanations and the custom assets provided. The practical recipes provided in the book show clearly and concisely how to do things right in Unity. By the end of this book, you'll be near "experts" when dealing with Unity. You will also understand how to resolve issues and be able to comfortably offer solutions for 2D game development.</p>
Table of Contents (15 chapters)
Unity 2D Game Development Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Importing packages


The Character Controller package is a standard package provided with Unity and it can be added to a new project upon creating it, or it can be added in a later stage. As a starter, our next recipe shows how to import a package into an already existing project.

A large number of packages, such as the Character Controller package, are provided with Unity and more can be bought from the Asset Store. It's always worth taking a look to see what is available there whenever you need extra stuff for your projects. If you are lucky, you may find what you need for free. Otherwise, you can consider paying for quality stuff and save the time it would take to make it yourself.

Getting ready

Have your existing project opened in Unity and be ready to follow our instructions.

How to do it...

  1. Access the Project panel and right-click anywhere. From the menu, select Import Package under Character Controller, as shown in the following screenshot:

  2. The importing panel opens. If you inspect it, you...