1
0
mirror of https://github.com/Siccity/xNode.git synced 2026-03-26 06:29:03 +08:00

Context menu limited to graph background and node headers

This commit is contained in:
Thor Brigsted 2017-11-19 22:38:05 +01:00
parent 1ddfdeb1d3
commit dabd55cf49
2 changed files with 25 additions and 17 deletions

View File

@ -103,7 +103,13 @@ namespace XNodeEditor {
AssetDatabase.SaveAssets();
}
} else if (e.button == 1) {
if (!isPanning) ShowContextMenu();
if (!isPanning) {
if (IsHoveringNode && IsHoveringTitle(hoveredNode)) {
ShowNodeContextMenu(hoveredNode);
} else if (!IsHoveringNode) {
ShowGraphContextMenu();
}
}
isPanning = false;
}
break;

View File

@ -71,27 +71,29 @@ namespace XNodeEditor {
return GUILayout.Button(name, EditorStyles.toolbarDropDown, GUILayout.Width(width));
}
/// <summary> Show right-click context menu </summary>
public void ShowContextMenu() {
/// <summary> Show right-click context menu for a node </summary>
public void ShowNodeContextMenu(Node node) {
GenericMenu contextMenu = new GenericMenu();
Vector2 pos = WindowToGridPosition(Event.current.mousePosition);
contextMenu.AddItem(new GUIContent("Remove"), false, () => graph.RemoveNode(node));
contextMenu.DropDown(new Rect(Event.current.mousePosition, Vector2.zero));
}
if (hoveredNode != null) {
Node node = hoveredNode;
contextMenu.AddItem(new GUIContent("Remove"), false, () => graph.RemoveNode(node));
} else {
for (int i = 0; i < nodeTypes.Length; i++) {
Type type = nodeTypes[i];
/// <summary> Show right-click context menu for current graph </summary>
void ShowGraphContextMenu() {
GenericMenu contextMenu = new GenericMenu();
Vector2 pos = WindowToGridPosition(Event.current.mousePosition);
for (int i = 0; i < nodeTypes.Length; i++) {
Type type = nodeTypes[i];
string name = nodeTypes[i].ToString().Replace('.', '/');
Node.CreateNodeMenuAttribute attrib;
if (NodeEditorUtilities.GetAttrib(type, out attrib)) {
name = attrib.menuName;
}
contextMenu.AddItem(new GUIContent(name), false, () => {
CreateNode(type, pos);
});
string name = nodeTypes[i].ToString().Replace('.', '/');
Node.CreateNodeMenuAttribute attrib;
if (NodeEditorUtilities.GetAttrib(type, out attrib)) {
name = attrib.menuName;
}
contextMenu.AddItem(new GUIContent(name), false, () => {
CreateNode(type, pos);
});
}
contextMenu.DropDown(new Rect(Event.current.mousePosition, Vector2.zero));
}