| 650 | } |
| 651 | |
| 652 | bool UFlowGraphNode::CanPasteHere(const UEdGraph* TargetGraph) const |
| 653 | { |
| 654 | const UFlowGraph* FlowGraph = Cast<UFlowGraph>(TargetGraph); |
| 655 | if (FlowGraph == nullptr) |
| 656 | { |
| 657 | return false; |
| 658 | } |
| 659 | |
| 660 | return Super::CanPasteHere(TargetGraph) && FlowGraph->GetFlowAsset()->IsNodeOrAddOnClassAllowed(NodeInstanceClass.Get()); |
| 661 | } |
| 662 | |
| 663 | TSharedPtr<SGraphNode> UFlowGraphNode::CreateVisualWidget() |
| 664 | { |
nothing calls this directly
no test coverage detected