Navigation
API > API/Editor > API/Editor/MovieSceneTools > API/Editor/MovieSceneTools/MovieSceneToolHelpers
References
| Module | MovieSceneTools |
| Header | /Engine/Source/Editor/MovieSceneTools/Public/MovieSceneToolHelpers.h |
| Include | #include "MovieSceneToolHelpers.h" |
template<typename ChannelType, typename CurveValueType>
static TArray < CurveValueType > GetChannelValues
(
const int32 StartIndex,
const int32 EndIndex,
const TArray < UMovieSceneSection * > & Sections,
const TArray < UMovieSceneSection * > & AbsoluteSections,
const FFrameNumber & FrameTime
)
Remarks
Get the channel values at the specified time with the specified sections, will get the channels from within the specified start and end indices Returns the total channel value of those sections for each channel. Remember if OverrideChannelIndex is set this will just be one channel.
Parameters
| Name | Description |
|---|---|
| StartIndex | Start Index to get values from |
| EndIndex | End Index to get values from, should be no greater than the number of channels -1 |
| Sections | List of non-absolute(additive and override) sections to evaluate. Note this may not be all of the sections in the track, but just a subset, which allows us to evaluate up to a certain point in the track. |
| AbsoluteSections | List of absolute channels to evaluate |
| FrameTime | Frame to evaluate |