Navigation
API > API/Plugins > API/Plugins/MovieRenderPipelineCore > API/Plugins/MovieRenderPipelineCore/UMoviePipelineExecutorBase
Description
Execute the provided Queue. You are responsible for deciding how to handle each job in the queue and processing them. OnExecutorFinished should be called when all jobs are completed, which can report both success, warning, cancel, or error.
For C++ implementations override `virtual void Execute_Implementation() const override_ For Python/BP implementations override @unreal.ufunction(override=True) def execute(self):
| Name | Execute |
| Type | function |
| Header File | /Engine/Plugins/MovieScene/MovieRenderPipeline/Source/MovieRenderPipelineCore/Public/MoviePipelineExecutor.h |
| Include Path | #include "MoviePipelineExecutor.h" |
UFUNCTION (BlueprintCallable, BlueprintNativeEvent, Category="Movie Render Pipeline")
void Execute
(
UMoviePipelineQueue * InPipelineQueue
)
Parameters
| Name | Remarks |
|---|---|
| InPipelineQueue | The queue that this should process all jobs for. This can be null when using certain combination of command line render flags/scripting. |