Navigation
API > API/Plugins > API/Plugins/MovieRenderPipelineCore > API/Plugins/MovieRenderPipelineCore/UMovieGraphBlueprintLibrary
Description
If InNode is valid, inspects the provided OutputsettingNode to determine if it wants to override the Frame Rate, and if so, returns the overwritten frame rate. If nullptr, or it does not have the bOverride_bUseCustomFrameRate flag set, then InDefaultrate is returned.
| Name | GetEffectiveFrameRate |
| 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 FFrameRate GetEffectiveFrameRate
(
UMovieGraphGlobalOutputSettingNode * InNode,
const FFrameRate & InDefaultRate
)
- The effective frame rate (taking into account the node's desire to override it).
Parameters
| Name | Remarks |
|---|---|
| InNode | Optional, setting to inspect for a custom framerate. |
| InDefaultRate | The frame rate to use if the node is nullptr or doesn't want to override the rate. |