Book Image

Unity 5.x Game Development Blueprints

By : John P. Doran
Book Image

Unity 5.x Game Development Blueprints

By: John P. Doran

Overview of this book

<p>This book will help you to create exciting and interactive games from scratch with the Unity game development platform. We will build 7-8 action-packed games of different difficulty levels, and we’ll show you how to leverage the intuitive workflow tools and state of the art Unity rendering engine to build and deploy mobile desktop as well as console games.</p> <p>Through this book, you’ll develop a complete skillset with the Unity toolset. Using the powerful C# language, we’ll create game-specific characters and game environments. Each project will focus on key Unity features as well as game strategy development. This book is the ideal guide to help your transition from an application developer to a full-fledged Unity game developer</p>
Table of Contents (19 chapters)
Unity 5.x Game Development Blueprints
Credits
About the Author
Acknowledgments
About the Reviewer
www.PacktPub.com
Preface
Index

Building an installer for Windows


Just as I mentioned previously, having a separate Data folder with our .exe file is somewhat of a pain. Rather than give people a .zip file and hope that they extract it all and then keep everything in the same folder, I will make the process automatic and give the person an opportunity to have it installed just like a professional game. With that in mind, I'm going to go over a free way to create a Windows installer, as follows:

  1. The first thing we need to do is get our setup program. For our demonstration, I will be using Jordan Russell's Inno Setup software. Go to http://jrsoftware.org/isinfo.php and click on the Download Inno Setup link. Take a look at the following screenshot:

  2. From there, click on the Stable Release button and select the isetup-5.5.8.exe file. Once it's finished, double-click on the executable to open it, clicking on the Run button. If it shows a security warning message, click on Yes to allow the changes to take place. Take a look at...