PlayerPrefsNamespace: UnityEngine
Description
Stores and accesses player preferences between game sessions.
Editor/StandaloneOn Mac OS X PlayerPrefs are stored in ~
Library
Preferences folder, in a file named unity.[company name].[product name].plist, where company and product names are the names set up in Project Settings. The same .plist file is used for both Projects run in the Editor and standalone players.On Windows, PlayerPrefs are stored in the registry under HKCU\Software\[company name]\[product name] key, where company and product names are the names set up in Project Settings.On Linux, PlayerPrefs can be found in ~/.configunity3d
[CompanyName]/[ProductName] again using the company and product names specified in the Project Settings.WebPlayerOn Web players, PlayerPrefs are stored in binary files in the following locations:Mac OS X: ~Library
PreferencesUnity
WebPlayerPrefsWindows: %APPDATA%\Unity\WebPlayerPrefsThere is one preference file per Web player URL and the file size is limited to 1 megabyte. If this limit is exceeded, SetInt, SetFloat and SetString will not store the value and throw a PlayerPrefsException.Static Functions
DeleteAll | Removes all keys and values from the preferences. Use with caution. |
---|---|
DeleteKey | Removes key and its corresponding value from the preferences. |
GetFloat | Returns the value corresponding to key in the preference file if it exists. |
GetInt | Returns the value corresponding to key in the preference file if it exists. |
GetString | Returns the value corresponding to key in the preference file if it exists. |
HasKey | Returns true if key exists in the preferences. |
Save | Writes all modified preferences to disk. |
SetFloat | Sets the value of the preference identified by key. |
SetInt | Sets the value of the preference identified by key. |
SetString | Sets the value of the preference identified by key. |
'Unity3D' 카테고리의 다른 글
[NGUI] Splash 화면 Fade In/Out 구현소스 (0) | 2014.04.22 |
---|---|
AndroidManifest.xml 기본파일 위치 (0) | 2014.04.22 |
[유니티] 화면 캡쳐하기 (0) | 2014.04.02 |
[테스트필요] 동적 Import (0) | 2014.03.03 |
Android res/values 폴더에 string 정의하기 (0) | 2014.02.24 |