FBlueprintEditor::MoveNodesToGraph

Move every node from the source graph to the destination graph.

Windows
MacOS
Linux

References

Module

Kismet

Header

/Engine/Source/Editor/Kismet/Public/BlueprintEditor.h

Include

#include "BlueprintEditor.h"

Source

/Engine/Source/Editor/Kismet/Private/BlueprintEditor.cpp

Syntax

static void MoveNodesToGraph
(
    TArray< UEdGraphNode * > & SourceNodes,
    UEdGraph * DestinationGraph,
    TSet< UEdGraphNode * > & OutExpandedNodes,
    UEdGraphNode ** OutEntry,
    UEdGraphNode ** OutResult,
    const bool bIsCollapsedGraph
)

Remarks

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.

Parameters

Parameter

Description

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

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss