Navigation
API > API/Plugins > API/Plugins/PCG > API/Plugins/PCG/UPCGBlueprintBaseElement
Description
Main execution function that will contain the logic for this PCG Element. Use GetContextHandle to have access to the context.
| Name | Execute |
| Type | function |
| Header File | /Engine/Plugins/PCG/Source/PCG/Public/Elements/Blueprint/PCGBlueprintBaseElement.h |
| Include Path | #include "Elements/Blueprint/PCGBlueprintBaseElement.h" |
UFUNCTION (BlueprintNativeEvent, 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. |