Navigation
API > API/Editor > API/Editor/Kismet > API/Editor/Kismet/FBlueprintEditor
Description
Move every node from the source graph to the destination graph. Add Each node that is moved to the OutExpandedNodes set. If the source graph is a function graph, keep track of the entry and result nodes in the given Out Parameters.
| Name | MoveNodesToGraph |
| Type | function |
| Header File | /Engine/Source/Editor/Kismet/Public/BlueprintEditor.h |
| Include Path | #include "BlueprintEditor.h" |
| Source | /Engine/Source/Editor/Kismet/Private/BlueprintEditor.cpp |
static void MoveNodesToGraph
(
TArray< UEdGraphNode * > & SourceNodes,
UEdGraph * DestinationGraph,
TSet< UEdGraphNode * > & OutExpandedNodes,
UEdGraphNode ** OutEntry,
UEdGraphNode ** OutResult,
const bool bIsCollapsedGraph
)
Parameters
| Name | Remarks |
|---|---|
| SourceNodes | Nodes to move |
| DestinationGraph | Graph to move nodes to |
| OutExpandedNodes | Set of each node that was moved from the source to destination graph |
| OutEntry | Pointer to the function entry node |
| OutResult | Pointer to the function result node |
| bIsCollapsedGraph | Whether or not the source graph is collapsed |