Stores and accesses Unity Editor preferences.
On macOS, EditorPrefs are stored in ~/Library/Preferences/com.unity3d.UnityEditor5.x.plist
.
On Windows, EditorPrefs are stored in the registry under the
HKCU\Software\Unity Technologies\Unity Editor 5.x
key.
On Linux, EditorPrefs are stored in ~/.local/share/unity3d/prefs
.
DeleteAll | 从偏好中删除所有键和值。请谨慎使用。 |
DeleteKey | 从偏好中删除 key 及其对应值。 |
GetBool | 返回偏好设置文件中与 key 对应的值(如果存在)。 |
GetFloat | 返回偏好设置文件中与 key 对应的浮点值(如果存在)。 |
GetInt | 返回偏好设置文件中与 key 对应的值(如果存在)。 |
GetString | 返回偏好设置文件中与 key 对应的值(如果存在)。 |
HasKey | 如果偏好设置文件中存在 /key/,则返回 true。 |
SetBool | 设置由 key 标识的偏好的值。 |
SetFloat | 设置由 key 标识的偏好设置的浮点值。 |
SetInt | 将由键标识的偏好设置的值设置为整数。 |
SetString | 设置由 key 标识的偏好设置的值。请注意,EditorPrefs 不支持 null 字符串,而是存储空字符串。 |