Book Image

Mastering Unity 5.x

By : Alan Thorn
Book Image

Mastering Unity 5.x

By: Alan Thorn

Overview of this book

Mastering Unity 5.x is for developers wishing to optimize the features of Unity 5.x. With an in-depth focus on a practical project, learn all about Unity architecture and impressive animation techniques. With this book, produce fun games with confidence.
Table of Contents (16 chapters)
Mastering Unity 5.x
Credits
About the Author
Acknowledgment
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

Player preferences - saving data


For Dead Keys, the player progresses through a sequence of levels, one after another. On reaching the end of one level, the next begins. As the player moves from level to level, their progress should be saved, so the most recent player can easily resume their progress from the highest attained level on their next play session. To achieve this, we need to use only the PlayerPrefs class for storing the highest attained level. Progress cannot be resumed within a level. That is, the player may resume play from the highest attained level, but always from the beginning of that level.

Note

As we'll see later in this chapter, the PlayerPrefs class is all we'll need for saving and loading user data in Dead Keys. This makes our persistent data needs very simple. Nevertheless, we'll cover a range of data storage solutions here, for games of all sizes, both small and large.

Preparing to save data for Dead Keys

Before saving data with PlayerPrefs, you should specify the...