| 13 | #pragma region FPointIO |
| 14 | |
| 15 | void FPointIO::SetInfos( |
| 16 | const int32 InIndex, |
| 17 | const FName InOutputPin, |
| 18 | const TSet<FString>* InTags) |
| 19 | { |
| 20 | IOIndex = InIndex; |
| 21 | OutputPin = InOutputPin; |
| 22 | NumInPoints = In ? In->GetPoints().Num() : 0; |
| 23 | |
| 24 | if (InTags) { Tags = MakeShared<FTags>(*InTags); } |
| 25 | else if (!Tags) { Tags = MakeShared<FTags>(); } |
| 26 | } |
| 27 | |
| 28 | bool FPointIO::InitializeOutput(const EIOInit InitOut) |
| 29 | { |
no test coverage detected