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 (BlueprintImplementableEvent, BlueprintCallable, Category="PCG|Execution")
void Execute
(
const FPCGDataCollection & Input,
FPCGDataCollection & Output
)
Remarks
Main execution function that will contain the logic for this PCG Element. Use GetContext to have access to the context.
Parameters
| Name | Description |
|---|---|
| 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. |