diff --git a/Editor/EditorIcons.cs b/Editor/EditorIcons.cs index 3473a9a..e6bcc8d 100644 --- a/Editor/EditorIcons.cs +++ b/Editor/EditorIcons.cs @@ -9,7 +9,7 @@ using System.IO; public class EditorIcons : EditorWindow { - [MenuItem("Tools/Extension/Editor Icons %e", priority = -1001)] + [MenuItem("AlicizaX/Extension/Editor Icons %e", priority = -1001)] public static void EditorIconsOpen() { #if UNITY_2018 diff --git a/Editor/Postprocessor/Atlas/AtlasEditorWindow.cs b/Editor/Postprocessor/Atlas/AtlasEditorWindow.cs index 9117026..e06b7fa 100644 --- a/Editor/Postprocessor/Atlas/AtlasEditorWindow.cs +++ b/Editor/Postprocessor/Atlas/AtlasEditorWindow.cs @@ -5,7 +5,7 @@ using UnityEngine; public class AtlasConfigWindow : EditorWindow { - [MenuItem("Tools/Extension/图集工具/Configuration Panel")] + [MenuItem("AlicizaX/Extension/图集工具/Configuration Panel")] public static void ShowWindow() { GetWindow("Atlas Config").minSize = new Vector2(500, 600); diff --git a/Editor/Postprocessor/Atlas/EditorSpriteSaveInfo.cs b/Editor/Postprocessor/Atlas/EditorSpriteSaveInfo.cs index 5298971..bdc0cad 100644 --- a/Editor/Postprocessor/Atlas/EditorSpriteSaveInfo.cs +++ b/Editor/Postprocessor/Atlas/EditorSpriteSaveInfo.cs @@ -110,7 +110,7 @@ public static class EditorSpriteSaveInfo } } - [MenuItem("Tools/Extension/图集工具/ForceGenerateAll")] + [MenuItem("AlicizaX/Extension/图集工具/ForceGenerateAll")] public static void ForceGenerateAll() { _atlasMap.Clear(); diff --git a/Editor/ReferenceFinder/ResourceReferenceInfo.cs b/Editor/ReferenceFinder/ResourceReferenceInfo.cs index 1ccad68..578877c 100644 --- a/Editor/ReferenceFinder/ResourceReferenceInfo.cs +++ b/Editor/ReferenceFinder/ResourceReferenceInfo.cs @@ -40,7 +40,7 @@ namespace TEngine.Editor mAssetTreeView?.OnGUI(new Rect(0, _toolbarGUIStyle.fixedHeight, position.width, position.height - _toolbarGUIStyle.fixedHeight)); } - [MenuItem("Tools/Extension/查找资产引用 _F10", false, 100)] + [MenuItem("AlicizaX/Extension/查找资产引用 _F10", false, 100)] public static void FindRef() { InitDataIfNeeded(); diff --git a/Editor/TexturePacker/UnityTexturePackEditor.cs b/Editor/TexturePacker/UnityTexturePackEditor.cs index e782d33..b80070c 100644 --- a/Editor/TexturePacker/UnityTexturePackEditor.cs +++ b/Editor/TexturePacker/UnityTexturePackEditor.cs @@ -18,7 +18,7 @@ public class UnityTexturePackerEditor : EditorWindow private string lastJson = ""; private string lastAtlasPath = ""; - [MenuItem("Tools/Extension/Texture Packer")] + [MenuItem("AlicizaX/Extension/Texture Packer")] public static void ShowWindow() { var w = GetWindow("Texture Packer"); diff --git a/Editor/Toolbar/Helpers/ToolInfo.cs b/Editor/Toolbar/Helpers/ToolInfo.cs index 6b9d712..b6faac1 100644 --- a/Editor/Toolbar/Helpers/ToolInfo.cs +++ b/Editor/Toolbar/Helpers/ToolInfo.cs @@ -2,7 +2,7 @@ { internal static class ToolInfo { - public const string COMPANY_NAME = "Tools/Extension/Toolbar"; + public const string COMPANY_NAME = "AlicizaX/Extension/Toolbar"; public const string EDITOR_MENU_BASE = COMPANY_NAME + "/" ; } }