Navigation
API > API/Plugins > API/Plugins/MovieRenderPipelineCore > API/Plugins/MovieRenderPipelineCore/UMoviePipelineExecutorShot
Description
Set the status of this shot to the given value. This will be shown on the UI if progress is set to a value less than zero. If progress is > 0 then the progress bar will be shown on the UI instead. Progress and Status Message are cosmetic.
For C++ implementations override `virtual void SetStatusMessage_Implementation() override_ For Python/BP implementations override @unreal.ufunction(override=True) def set_status_message(self, inStatus):
| Name | SetStatusMessage |
| Type | function |
| Header File | /Engine/Plugins/MovieScene/MovieRenderPipeline/Source/MovieRenderPipelineCore/Public/MoviePipelineQueue.h |
| Include Path | #include "MoviePipelineQueue.h" |
UFUNCTION (BlueprintCallable, BlueprintNativeEvent, Category="Movie Render Pipeline")
void SetStatusMessage
(
const FString & InStatus
)
Parameters
| Name | Remarks |
|---|---|
| InStatus | The status message you wish the executor to have. |