Navigation
API > API/Plugins > API/Plugins/MovieRenderPipelineCore > API/Plugins/MovieRenderPipelineCore/UMovieGraphBlueprintLibrary
Description
Get the estimated amount of time remaining for the current pipeline. Based on looking at the total amount of samples to render vs. how many have been completed so far. Inaccurate when Time Dilation is used, and gets more accurate over the course of the render.
| Name | GetEstimatedTimeRemaining |
| Type | function |
| Header File | /Engine/Plugins/MovieScene/MovieRenderPipeline/Source/MovieRenderPipelineCore/Public/Graph/MovieGraphBlueprintLibrary.h |
| Include Path | #include "Graph/MovieGraphBlueprintLibrary.h" |
| Source | /Engine/Plugins/MovieScene/MovieRenderPipeline/Source/MovieRenderPipelineCore/Private/Graph/MovieGraphBlueprintLibrary.cpp |
UFUNCTION (BlueprintPure, Category="Movie Graph")
static bool GetEstimatedTimeRemaining
(
const UMovieGraphPipeline * InMovieGraphPipeline,
FTimespan & OutEstimate
)
- True if a valid estimate can be calculated, or false if it is not ready yet (ie: not enough samples rendered)
Parameters
| Name | Remarks |
|---|---|
| InMovieGraphPipeline | The pipeline to get the time estimate from. |
| OutEstimate | The resulting estimate, or FTimespan() if estimate is not valid. |