版本:Unity 6 (6000.0)
语言中文(简体)
  • C#

PlayerPrefs.GetInt

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交,但我们确实会从用户处阅读每条建议的更改,并会在适用时进行更新。

关闭

提交失败

由于某种原因,无法提交您的建议更改。请在几分钟后<a>重试</a>。感谢您花时间帮助我们提高 Unity 文档的质量。

关闭

取消

声明

public static int GetInt(string key);

声明

public static int GetInt(string key, int defaultValue);

描述

如果存在,则返回首选项文件中对应于 key 的值。

如果不存在,PlayerPrefs.GetInt 将返回 defaultValue

//Use this script to fetch the settings and show them as text on the screen.

using UnityEngine; using UnityEngine.UI;

public class PlayerPrefsGetIntExample : MonoBehaviour { int m_Score;

void Start() { //Fetch the PlayerPref settings SetText(); }

void SetText() { //Fetch the score from the PlayerPrefs (set these PlayerPrefs in another script). If no Int of this name exists, the default is 0. m_Score = PlayerPrefs.GetInt("Score", 0); }

void OnGUI() { //Fetch the PlayerPrefs settings and output them to the screen using Labels GUI.Label(new Rect(50, 130, 200, 30), "Score : " + m_Score); } }