Navigation
API > API/Runtime > API/Runtime/MovieScene > API/Runtime/MovieScene/IMovieSceneKeyProxy
Description
Implementation function that retrieves the underlying key time/value and applies then to the specified value and time parameters. Normally called once per tick.
| Name | RefreshCurrentValue |
| Type | function |
| Header File | /Engine/Source/Runtime/MovieScene/Public/MovieSceneKeyProxy.h |
| Include Path | #include "MovieSceneKeyProxy.h" |
template<typename ChannelType, typename ValueType>
void RefreshCurrentValue
(
TMovieSceneChannelHandle < ChannelType > InChannelHandle,
FKeyHandle InKeyHandle,
ValueType & OutValue,
FFrameNumber & OutTime
)
Parameters
| Name | Remarks |
|---|---|
| InChannelHandle | The channel on which the underlying key value resides |
| InKeyHandle | A handle to the key that we are reflecting |
| OutValue | (Out) Value to receive the underlying key's value |
| OutTime | (Out) Time to receive the underlying key time |