コガネブログ

平日更新を目標に Unity や C#、Visual Studio、ReSharper などのゲーム開発アレコレを書いていきます

【Unity】Mac で EditorPrefs の内容を確認する方法

概要

~/Library/Preferences/com.unity3d.UnityEditor5.x.plist

EditorPrefs の内容は上記のファイルに保存されている。

defaults read com.unity3d.UnityEditor5.x > unity_prefs.txt
open unity_prefs.txt

上記のコマンドで EditorPrefs の内容をテキストファイルに出力して確認できる。