コード例 #1
0
 public Setting(string key, T defaultValue = default(T))
 {
     this.key          = key;
     this.defaultValue = defaultValue;
     this.label        = new GUIContent(ObjectNames.NicifyVariableName(key));
     UserPrefs.Register(this);
 }
コード例 #2
0
ファイル: CustomDebug.cs プロジェクト: treert/om.unity.xx
 public static void DeletePrefs()
 {
     UserPrefs.DeleteAll();
 }