PlayerPrefs.GetStringstatic function GetString (key : String, defaultValue : String = "") : StringDescriptionReturns the value corresponding to key in the preference file if it exists. If it doesn't exist, it will return defaultValue.
JavaScript
print (PlayerPrefs.GetString("Player Name")); using UnityEngine; import UnityEngine |
