| 13 | PCGEX_INITIALIZE_ELEMENT(DrawEdges) |
| 14 | |
| 15 | bool FPCGExDrawEdgesElement::Boot(FPCGExContext* InContext) const |
| 16 | { |
| 17 | if (!FPCGExEdgesProcessorElement::Boot(InContext)) { return false; } |
| 18 | |
| 19 | #if WITH_EDITOR |
| 20 | |
| 21 | PCGEX_CONTEXT_AND_SETTINGS(DrawEdges) |
| 22 | |
| 23 | if (!Settings->bPCGExDebug) { return false; } |
| 24 | |
| 25 | #endif |
| 26 | |
| 27 | return true; |
| 28 | } |
| 29 | |
| 30 | bool FPCGExDrawEdgesElement::ExecuteInternal( |
| 31 | FPCGContext* InContext) const |
nothing calls this directly
no outgoing calls
no test coverage detected