Navigation
API > API/Plugins > API/Plugins/MovieRenderPipelineCore > API/Plugins/MovieRenderPipelineCore/UMovieGraphBlueprintLibrary
Description
Gets the desired output resolution for the movie render graph as specified by the user. Does not include overscan, tiling, or aspect ratio constraints, and is the target resolution that the pipeline will generally output (e.g. when cropping overscan in non-EXR formats). Use GetOverscannedResolution or GetBackbufferResolution to get resolutions that factor in overscan and tiling, respectively
| Name | GetDesiredOutputResolution |
| 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 (BlueprintCallable, Category="Movie Graph")
static FIntPoint GetDesiredOutputResolution
(
UMovieGraphEvaluatedConfig * InEvaluatedGraph,
float CameraAspectRatio
)
- The desired output resolution
Parameters
| Name | Remarks |
|---|---|
| InEvaluatedGraph | The evaluated graph that will provide context for resolving the resolution |
| CameraAspectRatio | The aspect ratio for the camera. Set to zero if you want to adapt to the output resolution's aspect ratio (otherwise resolution may be adapted to fit aspect ratio based on config settings). |