| 480 | } |
| 481 | |
| 482 | UFlowNode* UFlowAsset::CreateNode(const UClass* NodeClass, UEdGraphNode* GraphNode) |
| 483 | { |
| 484 | UFlowNode* NewNode = NewObject<UFlowNode>(this, NodeClass, NAME_None, RF_Transactional); |
| 485 | NewNode->SetGraphNode(GraphNode); |
| 486 | |
| 487 | RegisterNode(GraphNode->NodeGuid, NewNode); |
| 488 | return NewNode; |
| 489 | } |
| 490 | |
| 491 | void UFlowAsset::RegisterNode(const FGuid& NewGuid, UFlowNode* NewNode) |
| 492 | { |
nothing calls this directly
no test coverage detected