ゲームデータのセーブ、ロードなどを行います。
Editor/Standalone スタンドアローンの Mac OS X で PlayerPrefs は、~ LibraryPreferencesフォルダに unity.[company name].[product name].plistという形で保存されます。company name および product name は Project Settings でセットアップします。 .plistファイル は、Unityのエディター上および スタンドアローンプレイヤーでも読み込むことができます。 Windows 上で PlayerPrefs は、 HKCU\Software\[company name]\[product name]に保存されます。company name および product name は Project Settings でセットアップします。 Linux 上で PlayerPrefs は、 ~/.config unity3d[CompanyName]/[ProductName] に保存されます。company name および product name は Project Settings でセットアップします。 On Windows Store Apps, Player Prefs can be found in %userprofile%\AppData\Local\Packages\[ProductPackageId]>\LocalState\playerprefs.dat On Windows Phone 8, Player Prefs can be found in application's local folder, See Also: Windows.Directory.localFolder WebPlayer Web Player で PlayerPrefs はバイナリ形式のファイルで次の場所に保存されます: Mac OS X: ~/Library/Preferences/Unity/WebPlayerPrefs Windows: %APPDATA%\Unity\WebPlayerPrefs Web Player URL ごとにひとつの設定ファイルがあり、 Web Player でのファイルサイズは、1Mまでと制限されているので注意してください。1M以上 保存しようとすると、SetInt, SetFloat, SetString で PlayerPrefsException エラーをスローします。