How can I view a webplayer playerprefs file (.UPP file)
I’ve tried using things like notepad, but it doesn’t work very well.
Any ideas?
How can I view a webplayer playerprefs file (.UPP file)
I’ve tried using things like notepad, but it doesn’t work very well.
Any ideas?
The UPP files are in a custom binary format. You can't view it with any program because there is none.
edit: Now there is one :D
But you can write your own ;) The format is quite simple:
File structure:
for each saved pref:
That are the possible type identifier:
The header consists of the word "UnityPrf" (8 bytes) followed by (i guess) two version integers: 0x10000 and 0x100000
That's all (at least at the moment, maybe it get extended in future versions)
I’ve made a UPP File Editor that doesn’t need Unity
Thanks to Bunny83 for the format