| 22 | PCGEX_INITIALIZE_ELEMENT(SplitPath) |
| 23 | |
| 24 | bool FPCGExSplitPathElement::Boot(FPCGExContext* InContext) const |
| 25 | { |
| 26 | if (!FPCGExPathProcessorElement::Boot(InContext)) { return false; } |
| 27 | |
| 28 | PCGEX_CONTEXT_AND_SETTINGS(SplitPath) |
| 29 | |
| 30 | PCGEX_FWD(UpdateTags) |
| 31 | Context->UpdateTags.Init(); |
| 32 | |
| 33 | Context->MainPaths = MakeShared<PCGExData::FPointIOCollection>(Context); |
| 34 | Context->MainPaths->OutputPin = Settings->GetMainOutputPin(); |
| 35 | |
| 36 | return true; |
| 37 | } |
| 38 | |
| 39 | bool FPCGExSplitPathElement::ExecuteInternal(FPCGContext* InContext) const |
| 40 | { |
nothing calls this directly
no test coverage detected