设置由给定键标识的该首选项的浮点值。可以使用PlayerPrefs.GetFloat来检索此值。
以下示例将KeyName
和Value
变量传递给名为SetFloat
的函数。函数使用PlayerPrefs.SetFloat
中的KeyName
变量作为标识符,并将Value
用作要存储的内容。例如,可以使用PlayerPrefs.SetFloat
来存储用户的当前健康状况,如下所示:/PlayerPrefs.SetFloat(“CharacterHealth”, 60.5f)/。GetFloat 函数随后使用相同的KeyName
变量来检索存储在PlayerPrefs
中的值。有关详细信息,请参阅PlayerPrefs.GetFloat。
using UnityEngine;
public class Example : MonoBehaviour { public void SetFloat(string KeyName, float Value) { PlayerPrefs.SetFloat(KeyName, Value); }
public float GetFloat(string KeyName) { return PlayerPrefs.GetFloat(KeyName); } }