File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ internal static class PreferenceWindow {
2222
2323 public static Settings OnDeserialize ( ) {
2424 return new Settings {
25- UseCopyPaste = EditorPrefs . GetBool ( KEY_USE_COPY_PASTE , true ) ,
26- UseAdditionalFiles = EditorPrefs . GetBool ( KEY_USE_ADDITIONAL_FILES , true ) ,
25+ UseCopyPaste = EditorPrefs . GetBool ( KEY_USE_COPY_PASTE , false ) ,
26+ UseAdditionalFiles = EditorPrefs . GetBool ( KEY_USE_ADDITIONAL_FILES , false ) ,
2727 } ;
2828 }
2929
@@ -34,7 +34,9 @@ public static void OnSerialize(Settings settings) {
3434
3535 public static void OnGUI ( string searchContext , Settings obj ) {
3636 EditorGUI . indentLevel ++ ;
37+ EditorGUILayout . HelpBox ( "Shows context options for copying and pasting assets in \" IO/*\" ." , MessageType . Info ) ;
3738 obj . UseCopyPaste = EditorGUILayout . ToggleLeft ( _useCopyPasteText , obj . UseCopyPaste ) ;
39+ EditorGUILayout . HelpBox ( "Shows context options for creating additional text file types in \" Assets/Create/Text Files/*\" ." , MessageType . Info ) ;
3840 obj . UseAdditionalFiles = EditorGUILayout . ToggleLeft ( _useAdditionalFilesText , obj . UseAdditionalFiles ) ;
3941 EditorGUI . indentLevel -- ;
4042
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ This aims to improve the usability of the project window.
99
1010### Package Settings
1111- Parts of this package can be enabled/disabled via the preferences menu, located in ` Edit/Preferences/Project Window Extensions `
12+ - Everything is disabled by default.
1213
1314## Current Enhancements
1415
@@ -42,4 +43,7 @@ This aims to improve the usability of the project window.
4243 - CSV File
4344- Can be found under ` Create/Text Files/* `
4445
45- ![ Additional Text Files] ( ./Assets~/additional_text.png )
46+ ![ Additional Text Files] ( ./Assets~/additional_text.png )
47+
48+ ## Additional Information
49+ - [ Trello Board] ( https://trello.com/b/h7sMCsTR/my-packages )
Original file line number Diff line number Diff line change 11{
22 "name" : " com.nomnom.project-window-extensions" ,
3- "version" : " 1.3.1 " ,
3+ "version" : " 1.3.2 " ,
44 "displayName" : " Project Window Extensions" ,
55 "description" : " This aims to improve the usability of the project window." ,
66 "unity" : " 2020.3" ,
You can’t perform that action at this time.
0 commit comments