@@ -249,33 +249,33 @@ private int MaximumNamespaceDepth
249249 private static readonly EditorPreferenceBool FoldoutSettings =
250250 new EditorPreferenceBool ( FOLDOUT_SETTINGS_KEY , true ) ;
251251 private static readonly EditorPreferenceBool FoldoutScriptableObject =
252- new EditorPreferenceBool ( FOLDOUT_SCRIPTABLE_OBJECT_KEY , false ) ;
253- private static readonly EditorPreferenceBool FoldoutScript = new EditorPreferenceBool ( FOLDOUT_SCRIPT_KEY , false ) ;
252+ new EditorPreferenceBool ( FOLDOUT_SCRIPTABLE_OBJECT_KEY , false , true ) ;
253+ private static readonly EditorPreferenceBool FoldoutScript = new EditorPreferenceBool ( FOLDOUT_SCRIPT_KEY , false , true ) ;
254254
255255
256256 private static readonly EditorPreferenceBool WaitingRecompileForContinue =
257- new EditorPreferenceBool ( WAITING_SCRIPTS_TO_RECOMPILE_TO_CONTINUE_KEY ) ;
257+ new EditorPreferenceBool ( WAITING_SCRIPTS_TO_RECOMPILE_TO_CONTINUE_KEY , false , true ) ;
258258
259259 private static readonly EditorPreferenceString LastCollectionScriptableObjectPath =
260- new EditorPreferenceString ( LAST_COLLECTION_SCRIPTABLE_OBJECT_PATH_KEY ) ;
260+ new EditorPreferenceString ( LAST_COLLECTION_SCRIPTABLE_OBJECT_PATH_KEY , null , true ) ;
261261
262262 private static readonly EditorPreferenceString LastCollectionFullName =
263- new EditorPreferenceString ( LAST_COLLECTION_FULL_NAME_KEY ) ;
263+ new EditorPreferenceString ( LAST_COLLECTION_FULL_NAME_KEY , null , true ) ;
264264
265265 private static readonly EditorPreferenceString LastScriptsTargetFolder =
266- new EditorPreferenceString ( LAST_TARGET_SCRIPTS_FOLDER_KEY ) ;
266+ new EditorPreferenceString ( LAST_TARGET_SCRIPTS_FOLDER_KEY , null , true ) ;
267267
268268 private static readonly EditorPreferenceString LastGeneratedCollectionScriptPath =
269- new EditorPreferenceString ( LAST_GENERATED_COLLECTION_SCRIPT_PATH_KEY ) ;
269+ new EditorPreferenceString ( LAST_GENERATED_COLLECTION_SCRIPT_PATH_KEY , null , true ) ;
270270
271271 private static readonly EditorPreferenceBool CreateFolderForThisCollection =
272- new EditorPreferenceBool ( CREATE_FOLDER_FOR_THIS_COLLECTION_KEY ) ;
272+ new EditorPreferenceBool ( CREATE_FOLDER_FOR_THIS_COLLECTION_KEY , false , true ) ;
273273
274274 private static readonly EditorPreferenceBool CreateFolderForThisCollectionScripts =
275- new EditorPreferenceBool ( CREATE_FOLDER_FOR_THIS_COLLECTION_SCRIPTS_KEY ) ;
275+ new EditorPreferenceBool ( CREATE_FOLDER_FOR_THIS_COLLECTION_SCRIPTS_KEY , false , true ) ;
276276
277277 private static readonly EditorPreferenceString CollectionFormat =
278- new EditorPreferenceString ( COLLECTION_FORMAT_KEY , COLLECTION_FORMAT_DEFAULT ) ;
278+ new EditorPreferenceString ( COLLECTION_FORMAT_KEY , COLLECTION_FORMAT_DEFAULT , true ) ;
279279
280280 private string cachedCollectionName = COLLECTION_NAME_DEFAULT ;
281281 private string CollectionName
0 commit comments