UMoviePipelineExecutorBase::Execute

Execute the provided Queue.

Windows
MacOS
Linux

References

Module

MovieRenderPipelineCore

Header

/Engine/Plugins/MovieScene/MovieRenderPipeline/Source/MovieRenderPipelineCore/Public/MoviePipelineExecutor.h

Include

#include "MoviePipelineExecutor.h"

Syntax

[UFUNCTION](Programming/UnrealArchitecture/Reference/Functions)(BlueprintCallable, BlueprintNativeEvent, Category="Movie Render Pipeline")
void Execute
(
    UMoviePipelineQueue * InPipelineQueue
)

Remarks

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 .ufunction(override=True) def execute(self):

Parameters

Parameter

Description

InPipelineQueue

The queue that this should process all jobs for. This can be null when using certain combination of command line render flags/scripting.

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss