Navigation
API > API/Runtime > API/Runtime/TimeManagement > API/Runtime/TimeManagement/FCommonFrameRates
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static const FCommonFrameRateInfo * Find
(
FFrameRate InFrameRate |
CommonFrameRates.h | ||
static const FCommonFrameRateInfo * Find
(
const double InFrameRateAsDecimal, |
Find a common frame rate that matches the given frame rate as a decimal number of frames per second. | CommonFrameRates.h |
Find(FFrameRate)
| Name | Find |
| Type | function |
| Header File | /Engine/Source/Runtime/TimeManagement/Public/CommonFrameRates.h |
| Include Path | #include "CommonFrameRates.h" |
| Source | /Engine/Source/Runtime/TimeManagement/Private/CommonFrameRates.cpp |
static const FCommonFrameRateInfo * Find
(
FFrameRate InFrameRate
)
Find(const double, const double)
Description
Find a common frame rate that matches the given frame rate as a decimal number of frames per second.
| Name | Find |
| Type | function |
| Header File | /Engine/Source/Runtime/TimeManagement/Public/CommonFrameRates.h |
| Include Path | #include "CommonFrameRates.h" |
| Source | /Engine/Source/Runtime/TimeManagement/Private/CommonFrameRates.cpp |
static const FCommonFrameRateInfo * Find
(
const double InFrameRateAsDecimal,
const double Tolerance
)
: a pointer to the matching common frame rate if a match was found, or nullptr otherwise.
Parameters
| Name | Remarks |
|---|---|
| InFrameRateAsDecimal | Frame rate (in frames per second) to search for. |
| Tolerance | Numerical tolerance to use when searching for a frame rate match. |