Navigation
API > API/Plugins > API/Plugins/SequencerScripting > API/Plugins/SequencerScripting/UMovieSceneSectionExtensions
Description
Find all channels that belong to the specified UMovieSceneSection that match the specific type. This will filter out any children who do not inherit from the specified type for you.
| Name | GetChannelsByType |
| Type | function |
| Header File | /Engine/Plugins/MovieScene/SequencerScripting/Source/SequencerScripting/Public/ExtensionLibraries/MovieSceneSectionExtensions.h |
| Include Path | #include "ExtensionLibraries/MovieSceneSectionExtensions.h" |
| Source | /Engine/Plugins/MovieScene/SequencerScripting/Source/SequencerScripting/Private/ExtensionLibraries/MovieSceneSectionExtensions.cpp |
UFUNCTION (BlueprintCallable, Category="Sequencer|Section",
Meta=(ScriptMethod, DeterminesOutputType="TrackType", DevelopmentOnly))
static TArray < UMovieSceneScriptingChannel * > GetChannelsByType
(
UMovieSceneSection * Section,
TSubclassOf < UMovieSceneScriptingChannel > ChannelType
)
An array containing any key channels that match the type specified
Parameters
| Name | Remarks |
|---|---|
| Section | The section to use. |
| ChannelType | The class type to look for. |