예제 #1
0
        void DeleteNode(AbstractView source, Event e)
        {
            if (e.keyCode != KeyCode.Delete)
            {
                return;
            }

            NodeUtils.DeleteNodes(curGraph?.GetNodeSelection());
        }