Skip to content

Commit

Permalink
Change order of Assets/Create/Reflex menu item
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavopsantos committed Aug 22, 2024
1 parent fc5d541 commit 7b4c32d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/Reflex/Editor/ReflexMenuItems.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ private static void OpenReflexDebuggingWindow()
EditorWindow.GetWindow<ReflexDebuggerWindow>(false, "Reflex Debugger", true);
}

[MenuItem("Assets/Create/Reflex/Settings", false, priority = 0)]
[MenuItem("Assets/Create/Reflex/Settings")]
private static void CreateReflexSettings()
{
var directory = UnityEditorUtility.GetSelectedPathInProjectWindow();
var desiredAssetPath = Path.Combine(directory, "ReflexSettings.asset");
UnityEditorUtility.CreateScriptableObject<ReflexSettings>(desiredAssetPath);
}

[MenuItem("Assets/Create/Reflex/ProjectScope", false, priority = 0)]
[MenuItem("Assets/Create/Reflex/ProjectScope")]
private static void CreateReflexProjectScope()
{
var directory = UnityEditorUtility.GetSelectedPathInProjectWindow();
Expand Down

0 comments on commit 7b4c32d

Please sign in to comment.