| 162 | } |
| 163 | |
| 164 | ENodeDiffType FFlowGraphToDiff::GetNodeDiffType(const UEdGraphNode& Node) const |
| 165 | { |
| 166 | if (IsValid(GraphOld) && Node.GetGraph() == GraphOld) |
| 167 | { |
| 168 | return ENodeDiffType::Old; |
| 169 | } |
| 170 | |
| 171 | if (IsValid(GraphNew) && Node.GetGraph() == GraphNew) |
| 172 | { |
| 173 | return ENodeDiffType::New; |
| 174 | } |
| 175 | |
| 176 | return ENodeDiffType::Invalid; |
| 177 | } |
| 178 | |
| 179 | TSharedPtr<FFlowObjectDiff> FFlowGraphToDiff::GetFlowObjectDiff(const FDiffResultItem& DiffResultItem) |
| 180 | { |
no test coverage detected