Skip to content

Commit cb76398

Browse files
committed
Updated README.md and updated default states
1 parent 16989c5 commit cb76398

3 files changed

Lines changed: 10 additions & 4 deletions

File tree

Editor/PreferenceWindow.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",

0 commit comments

Comments
 (0)