Skip to content

Commit 9ff4a8b

Browse files
committed
Optimize interaction
1 parent a8714bb commit 9ff4a8b

6 files changed

+32
-12
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## [1.1.2] - 2023-10-12
4+
5+
- Fix bugs
6+
- Optimize interaction
7+
38
## [1.1.1] - 2023-10-07
49

510
- Fix bugs

Editor/Scripts/Window/Content/CodeExecutorWindowDetail.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ private void OnDetailGeometryChangedEventChanged(GeometryChangedEvent evt) { }
104104
/// <param name="modeName"></param>
105105
private void ExecuteSnippet(string snippetName, string codeText, string modeName)
106106
{
107-
if (modeName.Equals(CodeExecutorManager.DefaultExecMode.name, StringComparison.OrdinalIgnoreCase))
107+
if (modeName == null || modeName.Equals(CodeExecutorManager.DefaultExecMode.name, StringComparison.OrdinalIgnoreCase))
108108
{
109109
ShowNotification($"Please select a valid execution mode!", 1f);
110110
return;

Editor/Scripts/Window/Content/Sidebar/CodeExecutorWindowNewItem.cs

+5-6
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,8 @@ private void InitNewCodeItem()
3939
m_NewItem.SetIcon(PipiUtility.GetIcon("CreateAddNew"));
4040
// 点击回调
4141
m_NewItem.RegisterCallback<MouseDownEvent>(OnNewCodeItemMouseDown);
42-
// 菜单回调
43-
m_NewItem.AddManipulator(new ContextualMenuManipulator(null));
44-
m_NewItem.RegisterCallback<ContextualMenuPopulateEvent>(OnNewCodeItemContextualMenuPopulate);
42+
// 右键菜单
43+
m_NewItem.AddManipulator(new ContextualMenuManipulator(NewCodeItemMenuBuilder));
4544
m_Sidebar.Add(m_NewItem);
4645
}
4746

@@ -50,11 +49,11 @@ private void OnNewCodeItemMouseDown(MouseDownEvent evt)
5049
Switch(CodeExecutorData.newSnippet);
5150
}
5251

53-
private void OnNewCodeItemContextualMenuPopulate(ContextualMenuPopulateEvent evt)
52+
private void NewCodeItemMenuBuilder(ContextualMenuPopulateEvent evt)
5453
{
55-
evt.menu.AppendAction("Create Empty Snippet", action =>
54+
evt.menu.AppendAction("Create New Empty Snippet", action =>
5655
{
57-
SaveAsNewSnippet(string.Empty);
56+
SnippetTreeViewMenu_CreateNewSnippet();
5857
});
5958
}
6059

Editor/Scripts/Window/Content/Sidebar/CodeExecutorWindowSnippetTreeView.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,13 @@ private void OnSnippetTreeViewKeyDown(Event evt)
105105
{
106106
DuplicateSelectedSnippets();
107107
}
108-
// Ctrl + Numpad -
109-
else if (evt.control && evt.keyCode == KeyCode.KeypadMinus)
108+
// Ctrl + Numpad- / Ctrl + [
109+
else if (evt.control && (evt.keyCode == KeyCode.KeypadMinus || evt.keyCode == KeyCode.LeftBracket))
110110
{
111111
SnippetTreeViewCollapseAllCategories();
112112
}
113-
// Ctrl + Numpad +
114-
else if (evt.control && evt.keyCode == KeyCode.KeypadPlus)
113+
// Ctrl + Numpad+ / Ctrl + ]
114+
else if (evt.control && (evt.keyCode == KeyCode.KeypadPlus || evt.keyCode == KeyCode.RightBracket))
115115
{
116116
SnippetTreeViewExpandAllCategories();
117117
}

Editor/Scripts/Window/Content/Sidebar/CodeExecutorWindowSnippetTreeViewMenu.cs

+16
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ private static class SnippetTreeViewMenuContent
2020
public static readonly GUIContent Top = new GUIContent("Top");
2121
public static readonly GUIContent UnTop = new GUIContent("Un-top");
2222
public static readonly GUIContent Delete = new GUIContent("Delete");
23+
public static readonly GUIContent CreateNewSnippet = new GUIContent("Create New Snippet");
24+
public static readonly GUIContent CreateNewSnippetUnderCategory = new GUIContent("Create New Snippet Under Category");
2325
public static readonly GUIContent CreateNewCategory = new GUIContent("Create New Category");
2426
public static readonly GUIContent CollapseAllCategories = new GUIContent("Collapse All");
2527
public static readonly GUIContent ExpandAllCategories = new GUIContent("Expand All");
@@ -33,6 +35,7 @@ private static class SnippetTreeViewMenuContent
3335
/// <param name="menu"></param>
3436
private void BuildSnippetTreeViewMenu(GenericMenu menu)
3537
{
38+
menu.AddItem(SnippetTreeViewMenuContent.CreateNewSnippet, false, SnippetTreeViewMenu_CreateNewSnippet);
3639
menu.AddItem(SnippetTreeViewMenuContent.CreateNewCategory, false, SnippetTreeViewMenu_CreateNewCategory);
3740

3841
menu.AddSeparator(string.Empty);
@@ -95,6 +98,7 @@ private void BuildSnippetTreeViewItemMenuSnippet(GenericMenu menu, int itemID)
9598
}
9699

97100
menu.AddSeparator(string.Empty);
101+
menu.AddItem(SnippetTreeViewMenuContent.CreateNewSnippetUnderCategory, false, SnippetTreeViewMenu_CreateNewSnippetUnderCategory, itemID);
98102
menu.AddItem(SnippetTreeViewMenuContent.CreateNewCategory, false, SnippetTreeViewMenu_CreateNewCategory);
99103

100104
menu.AddSeparator(string.Empty);
@@ -111,6 +115,7 @@ private void BuildSnippetTreeViewItemMenuCategory(GenericMenu menu, int itemID)
111115
else menu.AddItem(SnippetTreeViewMenuContent.Delete, false, SnippetTreeViewMenu_DeleteCategory, itemID);
112116

113117
menu.AddSeparator(string.Empty);
118+
menu.AddItem(SnippetTreeViewMenuContent.CreateNewSnippetUnderCategory, false, SnippetTreeViewMenu_CreateNewSnippetUnderCategory, itemID);
114119
menu.AddItem(SnippetTreeViewMenuContent.CreateNewCategory, false, SnippetTreeViewMenu_CreateNewCategory);
115120

116121
menu.AddSeparator(string.Empty);
@@ -202,6 +207,17 @@ private void SnippetTreeViewMenu_PasteFromClipboard()
202207
DoPasteFromClipboard();
203208
}
204209

210+
private void SnippetTreeViewMenu_CreateNewSnippet()
211+
{
212+
SaveAsNewSnippet(string.Empty, null, CodeExecutorManager.DefaultExecMode.name, null);
213+
}
214+
215+
private void SnippetTreeViewMenu_CreateNewSnippetUnderCategory(object itemID)
216+
{
217+
string category = GetSnippetCategoryBySnippetTreeViewItemId((int)itemID);
218+
SaveAsNewSnippet(string.Empty, null, CodeExecutorManager.DefaultExecMode.name, category);
219+
}
220+
205221
private void SnippetTreeViewMenu_CreateNewCategory()
206222
{
207223
CreateNewCategory();

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.chenpipi.code-executor",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"unity": "2020.2",
55
"displayName": "Code Executor",
66
"keywords": [

0 commit comments

Comments
 (0)