Navigation
API > API/Runtime > API/Runtime/MovieScene
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool UE::MovieScene::EvaluateChannel
(
const ChannelType* InChannel, |
Called to evaluate a channel. Overload with specific channel types for custom behaviour. | Channels/MovieSceneChannelTraits.h | |
bool UE::MovieScene::EvaluateChannel
(
const UMovieSceneSection* InSection, |
Called to evaluate a channel. Overload with specific channel types for custom behaviour. | Channels/MovieSceneChannelTraits.h |
UE::MovieScene::EvaluateChannel(const ChannelType *, FFrameTime, ValueType &)
Description
Called to evaluate a channel. Overload with specific channel types for custom behaviour.
| Name | UE::MovieScene::EvaluateChannel |
| Type | function |
| Header File | /Engine/Source/Runtime/MovieScene/Public/Channels/MovieSceneChannelTraits.h |
| Include Path | #include "Channels/MovieSceneChannelTraits.h" |
namespace UE
{
namespace MovieScene
{
template<typename ChannelType, typename ValueType>
bool UE::MovieScene::EvaluateChannel
(
const ChannelType * InChannel,
FFrameTime InTime,
ValueType & OutValue
)
}
}
true if the channel was evaluated successfully, false otherwise
Parameters
| Name | Remarks |
|---|---|
| InChannel | The channel to evaluate |
| InTime | The time to evaluate at |
| OutValue | Value to receive the result |
UE::MovieScene::EvaluateChannel(const UMovieSceneSection , const ChannelType , FFrameTime, ValueType &)
Description
Called to evaluate a channel. Overload with specific channel types for custom behaviour.
| Name | UE::MovieScene::EvaluateChannel |
| Type | function |
| Header File | /Engine/Source/Runtime/MovieScene/Public/Channels/MovieSceneChannelTraits.h |
| Include Path | #include "Channels/MovieSceneChannelTraits.h" |
namespace UE
{
namespace MovieScene
{
template<typename ChannelType, typename ValueType>
bool UE::MovieScene::EvaluateChannel
(
const UMovieSceneSection * InSection,
const ChannelType * InChannel,
FFrameTime InTime,
ValueType & OutValue
)
}
}
true if the channel was evaluated successfully, false otherwise
Parameters
| Name | Remarks |
|---|---|
| InSection | The section that contains the channel |
| InChannel | The channel to evaluate |
| InTime | The time to evaluate at |
| OutValue | Value to receive the result |