| 11 | const FName FFlowMessageLog::LogName(TEXT("FlowGraph")); |
| 12 | |
| 13 | FFlowGraphToken::FFlowGraphToken(const UFlowAsset* InFlowAsset) |
| 14 | { |
| 15 | CachedText = FText::FromString(InFlowAsset->GetClass()->GetPathName()); |
| 16 | } |
| 17 | |
| 18 | FFlowGraphToken::FFlowGraphToken(const UFlowNodeBase* InFlowNodeBase) |
| 19 | : GraphNode(InFlowNodeBase->GetGraphNode()) |
nothing calls this directly
no test coverage detected