| 98 | } |
| 99 | |
| 100 | void 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 | |
| 116 | void UFlowGraphNode::PostEditImport() |
| 117 | { |
nothing calls this directly
no test coverage detected