Navigation
API > API/Runtime > API/Runtime/MovieScene
Simple 1 dimensional range based off a FFrameNumber to define the range within which a cached interpolation is valid
| Name | FCachedInterpolationRange |
| Type | struct |
| Header File | /Engine/Source/Runtime/MovieScene/Public/Channels/MovieSceneInterpolation.h |
| Include Path | #include "Channels/MovieSceneInterpolation.h" |
Syntax
struct FCachedInterpolationRange
Variables
Public
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| End | FFrameNumber | Exclusive end frame (unless End == Max()) | Channels/MovieSceneInterpolation.h | |
| Start | FFrameNumber | Inclusive start frame | Channels/MovieSceneInterpolation.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FFrameNumber Clamp
(
FFrameNumber In |
Channels/MovieSceneInterpolation.h | ||
FFrameTime Clamp
(
FFrameTime In |
Channels/MovieSceneInterpolation.h | ||
bool Contains
(
FFrameNumber FrameNumber |
Channels/MovieSceneInterpolation.h | ||
bool IsEmpty() |
Channels/MovieSceneInterpolation.h |
Static
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static FCachedInterpolationRange Empty() |
Make an empty range | Channels/MovieSceneInterpolation.h | |
static FCachedInterpolationRange Finite
(
FFrameNumber InStart, |
Make finite range from InStart to InEnd, not including the end frame | Channels/MovieSceneInterpolation.h | |
static FCachedInterpolationRange From
(
FFrameNumber InStart |
Make a range that covers all times from (and including) the specified start | Channels/MovieSceneInterpolation.h | |
static FCachedInterpolationRange Infinite() |
Make an infinite range | Channels/MovieSceneInterpolation.h | |
static FCachedInterpolationRange Only
(
FFrameNumber InTime |
Make a range that only contains the specified time | Channels/MovieSceneInterpolation.h | |
static FCachedInterpolationRange Until
(
FFrameNumber InEnd |
Make a range that covers all times up to (but not including) the specified end | Channels/MovieSceneInterpolation.h |