jinyuliao / GenericGraph

Generic graph data structure plugin for ue4
MIT License
677 stars 153 forks source link

UI command not found for menu entry: BreakPinLinks #25

Open vahid67 opened 2 years ago

vahid67 commented 2 years ago

After right-click on a node in the graph this error appears on the log output:

LogToolMenus: Error: UI command not found for menu entry: BreakPinLinks, menu: GraphEditor.GraphNodeContextMenu.EdNode_GenericGraphNode

Ayliroe commented 1 week ago

For the author of this plugin, which was an amazing learning experience:

I figured out you have to bind your custom commands using .AdditionalCommands() when creating a new SGraphEditor: image

Otherwise only the keyboard shortcuts work and the context menu commands give out the error in this thread. Cheers!