Navigation
API > API/Runtime > API/Runtime/MovieScene > API/Runtime/MovieScene/FMovieSceneInverseSequenceTransf-
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TOptional< FFrameTime > TryTransformTime
(
FFrameTime Time |
Fallback overload that does not require a breadcrumb trail if one is not available. | Evaluation/MovieSceneSequenceTransform.h | |
TOptional< FFrameTime > TryTransformTime
(
FFrameTime Time, |
Attempt to transform the specified transformed time into its untransformed space. | Evaluation/MovieSceneSequenceTransform.h | |
TOptional< FFrameTime > TryTransformTime
(
FFrameTime Time, |
Fallback overload that does not require a breadcrumb trail if one is not available. | Evaluation/MovieSceneSequenceTransform.h | |
TOptional< FFrameTime > TryTransformTime
(
FFrameTime Time, |
Attempt to transform the specified transformed time into its untransformed space. | Evaluation/MovieSceneSequenceTransform.h |
TryTransformTime(FFrameTime)
Description
Fallback overload that does not require a breadcrumb trail if one is not available.
Attempt to transform the specified transformed time into its untransformed space. This function can fail if the time does not map to any other times in the untransformed space.
This overload may yield unexpected times due to the lack of breadcrumb context. Breadcrumbs should be used if possible.
| Name | TryTransformTime |
| Type | function |
| Header File | /Engine/Source/Runtime/MovieScene/Public/Evaluation/MovieSceneSequenceTransform.h |
| Include Path | #include "Evaluation/MovieSceneSequenceTransform.h" |
| Source | /Engine/Source/Runtime/MovieScene/Private/Evaluation/MovieSceneSequenceTransform.cpp |
TOptional < FFrameTime > TryTransformTime
(
FFrameTime Time
) const
The time in untransformed space if succesful, or an empty optional otherwise.
Parameters
| Name | Remarks |
|---|---|
| Time | The transformed time to convert to untransformed space |
TryTransformTime(FFrameTime, const FMovieSceneTransformBreadcrumbs &)
Description
Attempt to transform the specified transformed time into its untransformed space. This function can fail if the time does not map to any other times in the untransformed space.
| Name | TryTransformTime |
| Type | function |
| Header File | /Engine/Source/Runtime/MovieScene/Public/Evaluation/MovieSceneSequenceTransform.h |
| Include Path | #include "Evaluation/MovieSceneSequenceTransform.h" |
| Source | /Engine/Source/Runtime/MovieScene/Private/Evaluation/MovieSceneSequenceTransform.cpp |
TOptional < FFrameTime > TryTransformTime
(
FFrameTime Time,
const FMovieSceneTransformBreadcrumbs & Breadcrumbs
) const
The time in untransformed space if succesful, or an empty optional otherwise.
Parameters
| Name | Remarks |
|---|---|
| Time | The transformed time to convert to untransformed space |
| Breadcrumbs | A trail of breadcrumbs that lead us from untransformed to transformed space. The algorithm will attempt to find the closest solution to each breadcrumb as it goes. |
TryTransformTime(FFrameTime, const UE::MovieScene::FInverseTransformTimeParams &)
Description
Fallback overload that does not require a breadcrumb trail if one is not available.
Attempt to transform the specified transformed time into its untransformed space. This function can fail if the time does not map to any other times in the untransformed space.
This overload may yield unexpected times due to the lack of breadcrumb context. Breadcrumbs should be used if possible.
| Name | TryTransformTime |
| Type | function |
| Header File | /Engine/Source/Runtime/MovieScene/Public/Evaluation/MovieSceneSequenceTransform.h |
| Include Path | #include "Evaluation/MovieSceneSequenceTransform.h" |
| Source | /Engine/Source/Runtime/MovieScene/Private/Evaluation/MovieSceneSequenceTransform.cpp |
TOptional < FFrameTime > TryTransformTime
(
FFrameTime Time,
const UE::MovieScene::FInverseTransformTimeParams & Params
) const
The time in untransformed space if succesful, or an empty optional otherwise.
Parameters
| Name | Remarks |
|---|---|
| Time | The transformed time to convert to untransformed space |
| Params | Additional parameters that control the algotihm, such as whether it can look forwards, backwards, or across cycles/loops. |
TryTransformTime(FFrameTime, const FMovieSceneTransformBreadcrumbs &, const UE::MovieScene::FInverseTransformTimeParams &)
Description
Attempt to transform the specified transformed time into its untransformed space. This function can fail if the time does not map to any other times in the untransformed space.
| Name | TryTransformTime |
| Type | function |
| Header File | /Engine/Source/Runtime/MovieScene/Public/Evaluation/MovieSceneSequenceTransform.h |
| Include Path | #include "Evaluation/MovieSceneSequenceTransform.h" |
| Source | /Engine/Source/Runtime/MovieScene/Private/Evaluation/MovieSceneSequenceTransform.cpp |
TOptional < FFrameTime > TryTransformTime
(
FFrameTime Time,
const FMovieSceneTransformBreadcrumbs & Breadcrumbs,
const UE::MovieScene::FInverseTransformTimeParams & Params
) const
The time in untransformed space if succesful, or an empty optional otherwise.
Parameters
| Name | Remarks |
|---|---|
| Time | The transformed time to convert to untransformed space |
| Breadcrumbs | A trail of breadcrumbs that lead us from untransformed to transformed space. The algorithm will attempt to find the closest solution to each breadcrumb as it goes. |
| Params | Additional parameters that control the algotihm, such as whether it can look forwards, backwards, or across cycles/loops. |