Navigation
API > API/Runtime > API/Runtime/MovieScene > API/Runtime/MovieScene/Evaluation > API/Runtime/MovieScene/Evaluation/FMovieSceneInverseNestedSequence-
References
| Module | MovieScene |
| Header | /Engine/Source/Runtime/MovieScene/Public/Evaluation/MovieSceneSequenceTransform.h |
| Include | #include "Evaluation/MovieSceneSequenceTransform.h" |
| Source | /Engine/Source/Runtime/MovieScene/Private/Evaluation/MovieSceneSequenceTransform.cpp |
bool TransformTimeWithinRange
(
FFrameTime Time,
const TFunctionRef < bool> & Visitor,
FFrameTime UntransformedRangeStart,
FFrameTime UntransformedRangeEnd
) const
Remarks
Attempt to transform the specified time by this inverse transform within a specified un-transformed range, calling a functor for every instance of the specified time in the un-transformed space. True if every invocation of Visitor returned true, or there were no invocations; false if any invocation of Visitor returned false.
Parameters
| Name | Description |
|---|---|
| Time | The time to transform |
| Visitor | A callback to invoke for every instance of Time in the untransformed range. The result of the functor determines whether to continue iteration (true) or not (false). |
| UntransformedRangeStart | The inclusive start time in untransformed space within which to allow Visitor to be invoked |
| UntransformedRangeEnd | The inclusive end time in untransformed space within which to allow Visitor to be invoked |