| 131 | } |
| 132 | |
| 133 | TSharedPtr<const FInputChord> FFlowSpawnNodeCommands::GetChordByClass(const UClass* NodeClass) const |
| 134 | { |
| 135 | if (NodeCommands.Contains(NodeClass) && NodeCommands[NodeClass]->GetFirstValidChord()->IsValidChord()) |
| 136 | { |
| 137 | return NodeCommands[NodeClass]->GetFirstValidChord(); |
| 138 | } |
| 139 | |
| 140 | return nullptr; |
| 141 | } |
| 142 | |
| 143 | TSharedPtr<FEdGraphSchemaAction> FFlowSpawnNodeCommands::GetActionByChord(const FInputChord& InChord) const |
| 144 | { |