This is an old revision of the document!
Realizati o secventa de 3 scene in Unity cu urmatoarele functionalitati:
Inregistrare pe Teams
PlayerPrefs.SetInt("score",5); PlayerPrefs.SetFloat("volume",0.6f); PlayerPrefs.SetString("username","John Doe"); PlayerPrefs.Save(); int score = PlayerPrefs.GetInt("score"); float volume = PlayerPrefs.GetFloat("volume"); string player = PlayerPrefs.GetString("username");