Versions with this page:
Versions without this page:
返回偏好设置文件中与 key 对应的值(如果存在)。
key
如果不存在,则返回 /defaultValue/。
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { void Example() { print(PlayerPrefs.GetString("Player Name")); } }