unity 获取preference设置
时间: 2023-09-25 09:14:42 浏览: 110
在 Unity 中,可以使用 PlayerPrefs 类获取和设置偏好设置。以下是获取和设置偏好设置的示例代码:
获取偏好设置:
```
string playerName = PlayerPrefs.GetString("playerName");
int highScore = PlayerPrefs.GetInt("highScore");
```
设置偏好设置:
```
PlayerPrefs.SetString("playerName", "John");
PlayerPrefs.SetInt("highScore", 100);
```
请注意,偏好设置可以作为字符串、整数和浮点数进行存储。还可以使用 GetFloat 和 SetFloat 方法来获取和设置浮点数偏好设置。务必在保存和加载偏好设置时使用相同的键名称。
阅读全文