Navigation
Unreal Engine C++ API Reference > Plugins > MovieRenderPipelineCore > UMoviePipelineQueueEngineSubsystem
References
Module | MovieRenderPipelineCore |
Header | /Engine/Plugins/MovieScene/MovieRenderPipeline/Source/MovieRenderPipelineCore/Public/MoviePipelineQueueEngineSubsystem.h |
Include | #include "MoviePipelineQueueEngineSubsystem.h" |
Source | /Engine/Plugins/MovieScene/MovieRenderPipeline/Source/MovieRenderPipelineCore/Private/MoviePipelineQueueEngineSubsystem.cpp |
UFUNCTION (BlueprintCallable, Meta=(DeterminesOutputType="InExecutorType"),
Category="Movie Render Pipeline|Rendering")
UMoviePipelineExecutorBase * RenderQueueWithExecutor
(
TSubclassOf < UMoviePipelineExecutorBase > InExecutorType
)
Remarks
Starts processing the current queue with the supplied executor class. This starts an async process which may or may not run in a separate process (or on separate machines), determined by the executor implementation. The executor should report progress for jobs depending on the implementation. A pointer to the instance of the class created. This instance will be kept alive by the Queue Subsystem until it has finished (or been canceled). Register for progress reports and various callbacks on this instance.
Parameters
Name | Description |
---|---|
InExecutorType | A subclass of UMoviePipelineExecutorBase. An instance of this class is created and started. |