Navigation
API > API/Runtime > API/Runtime/MovieScene > API/Runtime/MovieScene/FMovieSceneChannelProxyData
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void Add
(
ChannelType& InChannel, |
Add a new channel to the proxy. | Channels/MovieSceneChannelProxy.h | |
void Add
(
ChannelType& InChannel, |
Add a new channel to the proxy. | Channels/MovieSceneChannelProxy.h |
Add(ChannelType &, const FMovieSceneChannelMetaData &)
Description
Add a new channel to the proxy. Channel's address is stored internally as a voic* and should exist as long as the channel proxy does
| Name | Add |
| Type | function |
| Header File | /Engine/Source/Runtime/MovieScene/Public/Channels/MovieSceneChannelProxy.h |
| Include Path | #include "Channels/MovieSceneChannelProxy.h" |
template<typename ChannelType>
void Add
(
ChannelType & InChannel,
const FMovieSceneChannelMetaData & InMetaData
)
Parameters
| Name | Remarks |
|---|---|
| InChannel | The channel to add to this proxy. Should live for as long as the proxy does. Any re-allocation should be accompanied with a re-creation of the proxy |
| InMetaData | The editor meta data to be associated with this channel |
Add(ChannelType &, const FMovieSceneChannelMetaData &, ExtendedEditorDataType &&)
Description
Add a new channel to the proxy. Channel's address is stored internally as a voic* and should exist as long as the channel proxy does
| Name | Add |
| Type | function |
| Header File | /Engine/Source/Runtime/MovieScene/Public/Channels/MovieSceneChannelProxy.h |
| Include Path | #include "Channels/MovieSceneChannelProxy.h" |
template<typename ChannelType, typename ExtendedEditorDataType>
void Add
(
ChannelType & InChannel,
const FMovieSceneChannelMetaData & InMetaData,
ExtendedEditorDataType && InExtendedEditorData
)
Parameters
| Name | Remarks |
|---|---|
| InChannel | The channel to add to this proxy. Should live for as long as the proxy does. Any re-allocation should be accompanied with a re-creation of the proxy |
| InMetaData | The editor meta data to be associated with this channel |
| InExtendedEditorData | Additional editor data to be associated with this channel as per its traits |