x


displaying playerprefs

How can I display all the strings (names of stuff) stored/saved in the playerprefs? Can you please provide a Javascript example to explain. Thanks

more ▼

asked Apr 05 '12 at 03:38 PM

randombinaries gravatar image

randombinaries
16 7 9 11

(comments are locked)
10|3000 characters needed characters left

1 answer: sort newest

There is no way to get the keys. The idea is that in your game you know what key-value pairs you write to the PlayerPreferences, so you know the keys. Think of this as exactly like the words in the Oxford English Dictionary. There is no list of words, it's assumed if you want to know what a word means you'll look it up.

Assuming you know the keys, then to get the values, you just call PlayerPrefs.GetString for each one.

more ▼

answered Apr 05 '12 at 03:46 PM

Graham Dunnett gravatar image

Graham Dunnett ♦♦
11.7k 11 20 64

I don't have a clue what keys your talking about please explain. Thank you.

Apr 06 '12 at 09:09 PM randombinaries

I was in your shoes not that long ago. When you save something to PlayerPrefs, you have two values: the key or index that you name and the variable you are passing in for the value. So if you were saving the player's name, it would be- PlayerPrefs.SetString("Name:",_playerName); Name, in this case is the key and whatever was typed in for the name is what will be saved.

Likewise, when you go to retrieve it- PlayerPrefs.GetString("Name:", _playerName);

Hope that helps.

Apr 19 '12 at 08:49 PM Gilead7
(comments are locked)
10|3000 characters needed characters left
Your answer
toggle preview:

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Topics:

x3735
x3458
x1360
x954
x295

asked: Apr 05 '12 at 03:38 PM

Seen: 731 times

Last Updated: Apr 19 '12 at 08:49 PM