Book Image

Mastering Unity 2017 Game Development with C# - Second Edition

Book Image

Mastering Unity 2017 Game Development with C# - Second Edition

Overview of this book

Do you want to make the leap from being an everyday Unity developer to being a pro game developer? Then look no further! This book is your one-stop solution to creating mesmerizing games with lifelike features and amazing gameplay. This book focuses in some detail on a practical project with Unity, building a first-person game with many features. You'll delve into the architecture of a Unity game, creating expansive worlds, interesting render effects, and other features to make your games special. You will create individual game components, use efficient animation techniques, and implement collision and physics effectively. Specifically, we'll explore optimal techniques for importing game assets, such as meshes and textures; tips and tricks for effective level design; how to animate and script NPCs; how to configure and deploy to mobile devices; how to prepare for VR development; how to work with version control; and more. By the end of this book, you'll have developed sufficient competency in Unity development to produce fun games with confidence.
Table of Contents (9 chapters)

Cloning

When your Remote Repo is up-to-date and contains all the changes you need to preserve, you won't need to worry if your Local Repo ever gets deleted or removed. This is because you can always download the complete Git Repo from the Remote using a Clone operation. To do this, select the Clone option from the GitKraken start menu:

Cloning a Remote Repo

From the Clone menu, select the BitBucket.org tab, and then choose the Remote Repo to download, using the Remotes list. Then, choose the folder where the Remote should be downloaded as a clone. Finally, click on the Clone the repo! button to confirm:

Cloning a selected BitBucket Repo to the computer

After cloning the Remote Repo, your Local version features the same files. This makes it easy for anybody to share and collaborate on the same Repo from any location. Great work! You're now fully equipped to start using...