Navigation
API > API/Plugins > API/Plugins/PCG > API/Plugins/PCG/UPCGBlueprintElement
Description
Main execution function that will contain the logic for this PCG Element. Use GetContext to have access to the context.
| Name | Execute |
| Type | function |
| Header File | /Engine/Plugins/PCG/Source/PCG/Public/Elements/PCGExecuteBlueprint.h |
| Include Path | #include "Elements/PCGExecuteBlueprint.h" |
UFUNCTION (BlueprintImplementableEvent, BlueprintCallable, Category="PCG|Execution")
void Execute
(
const FPCGDataCollection & Input,
FPCGDataCollection & Output
)
Parameters
| Name | Remarks |
|---|---|
| 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. |