キーが存在する場合は値を取得します
存在しない場合は defaultValue
を返します。
print (PlayerPrefs.GetString("Player Name"));
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { print(PlayerPrefs.GetString("Player Name")); } }