Book Image

Unreal Engine 4 Game Development Essentials

By : Satheesh PV, Satheesh P.V
Book Image

Unreal Engine 4 Game Development Essentials

By: Satheesh PV, Satheesh P.V

Overview of this book

Unreal Engine 4 is a complete suite of game development tools that gives you power to develop your game and seamlessly deploy it to iOS and Android devices. It can be used for the development of simple 2D games or even stunning high-end visuals. Unreal Engine features a high degree of portability and is a tool used by many game developers today. This book will introduce you to the most popular game development tool called Unreal Engine 4 with hands-on instructions for building stunning video games. You will begin by creating a new project or prototype by learning the essentials of Unreal Engine by getting familiar with the UI and Content Browser. Next, we'll import a sample asset from Autodesk 3ds max and learn more about Material Editor. After that we will learn more about Post Process. From there we will continue to learn more about Blueprints, Lights, UMG, C++ and more.
Table of Contents (19 chapters)
Unreal Engine 4 Game Development Essentials
Credits
About the Author
Acknowledgements
About the Reviewer
www.PacktPub.com
Preface
Index

Setting up Visual Studio 2015


With Unreal Engine 4.10, you will need Visual Studio 2015 to compile C++ for your projects. There are three editions of Visual Studio available. They are:

  • Community edition: This is free for any individual and nonenterprise organizations for up to five users. For this book, I will be using this edition.

  • Professional edition: This is a paid version and is useful for small teams.

  • Enterprise edition: This is for large teams working on projects of any size and complexity.

You can download the Visual Studio 2015 community edition from https://www.visualstudio.com/downloads/download-visual-studio-vs

After visiting the above link, select Community 2015 and choose your format to download. You can either download the web installer or the offline installer. To download the offline installer, select the ISO format:

After downloading the setup, double-click on vs_community.exe to run the setup and install Visual Studio 2015.

Note

Before installing Visual Studio 2015, make...