| 556 | |
| 557 | #if ENABLE_JUMP_TO_INNER_OBJECT |
| 558 | void FFlowAssetEditor::JumpToInnerObject(UObject* InnerObject) |
| 559 | { |
| 560 | if (const UFlowNodeBase* FlowNodeBase = Cast<UFlowNodeBase>(InnerObject)) |
| 561 | { |
| 562 | GraphEditor->JumpToNode(FlowNodeBase->GetGraphNode(), true); |
| 563 | } |
| 564 | else if (const UEdGraphNode* GraphNode = Cast<UEdGraphNode>(InnerObject)) |
| 565 | { |
| 566 | GraphEditor->JumpToNode(GraphNode, true); |
| 567 | } |
| 568 | } |
| 569 | #endif |
| 570 | |
| 571 | void FFlowAssetEditor::OnLogTokenClicked(const TSharedRef<IMessageToken>& Token) const |
nothing calls this directly
no test coverage detected