| 587 | } |
| 588 | |
| 589 | const UDlgNode* UDlgContext::GetNodeFromGUID(const FGuid& NodeGUID) const |
| 590 | { |
| 591 | check(Dialogue); |
| 592 | if (!Dialogue->IsValidNodeGUID(NodeGUID)) |
| 593 | { |
| 594 | return nullptr; |
| 595 | } |
| 596 | |
| 597 | return Dialogue->GetMutableNodeFromGUID(NodeGUID); |
| 598 | } |
| 599 | |
| 600 | bool UDlgContext::IsNodeEnterable(int32 NodeIndex, TSet<const UDlgNode*> AlreadyVisitedNodes) const |
| 601 | { |
no test coverage detected