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

Method JumpToInnerObject

Source/FlowEditor/Private/Asset/FlowAssetEditor.cpp:558–568  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

556
557#if ENABLE_JUMP_TO_INNER_OBJECT
558void 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
571void FFlowAssetEditor::OnLogTokenClicked(const TSharedRef<IMessageToken>& Token) const

Callers

nothing calls this directly

Calls 1

JumpToNodeMethod · 0.80

Tested by

no test coverage detected