unreal.MoviePipelinePIEExecutor

class unreal.MoviePipelinePIEExecutor(outer=None, name='None')

Bases: unreal.MoviePipelineLinearExecutorBase

This is the implementation responsible for executing the rendering of multiple movie pipelines in the currently running Editor process. This involves launching a Play in Editor session for each Movie Pipeline to process.

C++ Source:

  • Plugin: MovieRenderPipeline

  • Module: MovieRenderPipelineEditor

  • File: MoviePipelinePIEExecutor.h

Editor Properties: (see get_editor_property/set_editor_property)

  • debug_widget_class (type(Class)): [Read-Write] Debug Widget Class: Optional widget for feedback during render

  • http_response_recieved_delegate (MoviePipelineHttpResponseRecieved): [Read-Write] HTTPResponse Recieved Delegate: If an HTTP Request has been made and a response returned, the returned response will be broadcast on this event.

  • on_executor_errored_delegate (OnMoviePipelineExecutorErrored): [Read-Write] On Executor Errored Delegate: Called when an individual job reports a warning/error. Jobs are considered fatal if the severity was bad enough to abort the job (missing sequence, write failure, etc.)

    Exposed for Blueprints/Python. Called at the same time as the native one.

  • on_executor_finished_delegate (OnMoviePipelineExecutorFinished): [Read-Write] On Executor Finished Delegate: Called when the Executor has finished all jobs. Reports success if no jobs had fatal errors. Subscribe to the error delegate for more information about any errors.

    Exposed for Blueprints/Python. Called at the same time as the native one.

  • on_individual_job_finished_delegate (OnMoviePipelineIndividualJobFinished): [Read-Write] On Individual Job Finished Delegate

  • on_individual_job_work_finished_delegate (MoviePipelineWorkFinished): [Read-Write] On Individual Job Work Finished Delegate: Called after each job is finished in the queue. Params struct contains an output of all files written.

  • on_individual_shot_work_finished_delegate (MoviePipelineWorkFinished): [Read-Write] On Individual Shot Work Finished Delegate: Called after each shot is finished for a particular render. Params struct contains an output of files written for this shot. Only called if the UMoviePipeline is set up correctly, requires a flag in the output setting to be set.

  • socket_message_recieved_delegate (MoviePipelineSocketMessageRecieved): [Read-Write] Socket Message Recieved Delegate: If this executor has been configured to connect to a socket, this event will be called each time the socket recieves something. The message response expected from the server should have a 4 byte (int32) size prefix for the string to specify how much data we should expect. This delegate will not get invoked until we recieve that many bytes from the socket connection to avoid broadcasting partial messages.

  • target_pipeline_class (type(Class)): [Read-Write] Target Pipeline Class: Which Pipeline Class should be created by this Executor. May be null.

  • user_data (str): [Read-Write] User Data: Arbitrary data that can be associated with the executor. Not used by default implementations, nor read. This can be used to attach third party metadata such as job ids from remote farms.

property on_individual_job_finished_delegate

[Read-Write] On Individual Job Finished Delegate

Type

(OnMoviePipelineIndividualJobFinished)

property on_individual_job_work_finished_delegate

[Read-Write] On Individual Job Work Finished Delegate: Called after each job is finished in the queue. Params struct contains an output of all files written.

Type

(MoviePipelineWorkFinished)

property on_individual_shot_work_finished_delegate

[Read-Write] On Individual Shot Work Finished Delegate: Called after each shot is finished for a particular render. Params struct contains an output of files written for this shot. Only called if the UMoviePipeline is set up correctly, requires a flag in the output setting to be set.

Type

(MoviePipelineWorkFinished)

set_initialization_time(initialization_time) None

Set Initialization Time

Parameters

initialization_time (DateTime) –