Navigation
API > API/Plugins > API/Plugins/PCG > API/Plugins/PCG/Elements > API/Plugins/PCG/Elements/UPCGBlueprintElement
References
| Module | PCG |
| Header | /Engine/Plugins/PCG/Source/PCG/Public/Elements/PCGExecuteBlueprint.h |
| Include | #include "Elements/PCGExecuteBlueprint.h" |
UFUNCTION (BlueprintNativeEvent, Category="PCG|Execution")
void ExecuteWithContext
(
UPARAM FPCGContext & InContext,
const FPCGDataCollection & Input,
FPCGDataCollection & Output
)
Remarks
Main execution function that will contain the logic for this PCG Element, with the context as parameter.
Parameters
| Name | Description |
|---|---|
| InContext | Context of the execution |
| Input | Input collection containing all the data passed as input to the node. |
| Output | Data collection that will be passed as the output of the node, with pins matching the ones provided during the execution. |