Sign In Start Free Trial
Account

Add to playlist

Create a Playlist

Modal Close icon
You need to login to use this feature.
  • Book Overview & Buying Mastering Unity 5.x
  • Table Of Contents Toc
Mastering Unity 5.x

Mastering Unity 5.x

By : Alan Thorn
3 (1)
close
close
Mastering Unity 5.x

Mastering Unity 5.x

3 (1)
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 (9 chapters)
close
close

Player preferences - loading data


Having previously saved data with PlayerPrefs through Set functions, you can easily load that data back through accompanying Get functions (GetInt, GetFloat, and GetString). With these, you simply specify a unique key name, and Unity returns the respective value. Consider the following code:

int HighScore = PlayerPrefs.GetInt ("HighScore", 0); 
float RemainingTime = PlayerPrefs.GetFloat ("RemainingTime", 0f); 
string Name = PlayerPrefs.GetString ("PlayerName", "Jon Doe"); 

Each Get function requires only one essential parameter; namely, the key to retrieve. This is the first parameter. But what happens if you specify a key that doesn't exist? Which value should be returned by default in that case? To handle this, each Get function supports a second, optional parameter, which is always returned if the specified key doesn't exist.

Note

You can also query whether a specified key exists by using the HasKey function: https://docs.unity3d.com/ScriptReference/PlayerPrefs...

CONTINUE READING
83
Tech Concepts
36
Programming languages
73
Tech Tools
Icon Unlimited access to the largest independent learning library in tech of over 8,000 expert-authored tech books and videos.
Icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Icon 50+ new titles added per month and exclusive early access to books as they are being written.
Mastering Unity 5.x
notes
bookmark Notes and Bookmarks search Search in title playlist Add to playlist download Download options font-size Font size

Change the font size

margin-width Margin width

Change margin width

day-mode Day/Sepia/Night Modes

Change background colour

Close icon Search
Country selected

Close icon Your notes and bookmarks

Confirmation

Modal Close icon
claim successful

Buy this book with your credits?

Modal Close icon
Are you sure you want to buy this book with one of your credits?
Close
YES, BUY

Submit Your Feedback

Modal Close icon
Modal Close icon
Modal Close icon