Navigation
API > API/Runtime > API/Runtime/MovieScene > API/Runtime/MovieScene/Channels > API/Runtime/MovieScene/Channels/FPiecewiseCurve
References
| Module | MovieScene |
| Header | /Engine/Source/Runtime/MovieScene/Public/Channels/MovieScenePiecewiseCurve.h |
| Include | #include "Channels/MovieScenePiecewiseCurve.h" |
| Source | /Engine/Source/Runtime/MovieScene/Private/Channels/MovieScenePiecewiseCurve.cpp |
bool InverseEvaluateBetween
(
double Value,
FFrameTime StartTime,
FFrameTime EndTime,
const TFunctionRef < bool> & Visitor
) const
Remarks
Solve this curve for a given (y), only considering solutions that lie within a certain range. False if any invocation of Visitor returned false, true otherwise.
Parameters
| Name | Description |
|---|---|
| Value | The result to solve for |
| StartTime | Start time before which solutions will not be considered |
| EndTime | End time after which solutions will not be considered |
| Visitor | Callback that is invoked for each solution. Returning true allows the algorithm to continue, false will terminate the algorithm. |