Skip to content
This repository was archived by the owner on May 9, 2025. It is now read-only.

Commit 0f52a22

Browse files
Put void game event at the top of context menu
1 parent 766fe65 commit 0f52a22

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Assets/SO Architecture/Events/Game Events/GameEvent.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
[CreateAssetMenu(
44
fileName = "GameEvent.asset",
5-
menuName = SOArchitecture_Utility.GAME_EVENT + "Void",
6-
order = SOArchitecture_Utility.ASSET_MENU_ORDER)]
5+
menuName = SOArchitecture_Utility.GAME_EVENT + "Game Event",
6+
order = SOArchitecture_Utility.ASSET_MENU_ORDER_PRIORITY)]
77
public sealed class GameEvent : GameEventBase
88
{
99
}

Assets/SO Architecture/SOArchitecture_Utility.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
internal static class SOArchitecture_Utility
22
{
33
public const int ASSET_MENU_ORDER = 120;
4+
public const int ASSET_MENU_ORDER_PRIORITY = 119;
45

56
public const string VARIABLE_SUBMENU = "Variables/";
67
public const string SETS_SUBMENU = "Runtime Sets/";

0 commit comments

Comments
 (0)