MCPcopy Create free account
hub / github.com/MothCocoon/FlowGraph / PostDuplicate

Method PostDuplicate

Source/FlowEditor/Private/Graph/Nodes/FlowGraphNode.cpp:100–114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

98}
99
100void UFlowGraphNode::PostDuplicate(bool bDuplicateForPIE)
101{
102 Super::PostDuplicate(bDuplicateForPIE);
103
104 if (!bDuplicateForPIE)
105 {
106 CreateNewGuid();
107
108 UFlowNode* FlowNode = Cast<UFlowNode>(NodeInstance);
109 if (FlowNode && FlowNode->GetFlowAsset())
110 {
111 FlowNode->GetFlowAsset()->RegisterNode(NodeGuid, FlowNode);
112 }
113 }
114}
115
116void UFlowGraphNode::PostEditImport()
117{

Callers

nothing calls this directly

Calls 2

RegisterNodeMethod · 0.80
GetFlowAssetMethod · 0.45

Tested by

no test coverage detected