| 565 | } |
| 566 | |
| 567 | const UDlgNode* UDlgContext::GetNodeFromIndex(int32 NodeIndex) const |
| 568 | { |
| 569 | check(Dialogue); |
| 570 | if (!Dialogue->IsValidNodeIndex(NodeIndex)) |
| 571 | { |
| 572 | return nullptr; |
| 573 | } |
| 574 | |
| 575 | return Dialogue->GetMutableNodeFromIndex(NodeIndex); |
| 576 | } |
| 577 | |
| 578 | UDlgNode* UDlgContext::GetMutableNodeFromGUID(const FGuid& NodeGUID) const |
| 579 | { |
no test coverage detected