private void OnPasteNode()
        {
            BTEditorGraphNode targetNode = m_graph.GetLastSelectedNode();

            if (targetNode != null)
            {
                m_graph.OnPasteNode(targetNode);
            }
        }