UMovieSceneSectionExtensions::FindChannelsByType

Find all channels that belong to the specified [UMovieSceneSection](API\Runtime\MovieScene\UMovieSceneSection) that match the specific type.

Windows
MacOS
Linux

References

Module

SequencerScripting

Header

/Engine/Plugins/MovieScene/SequencerScripting/Source/SequencerScripting/Public/ExtensionLibraries/MovieSceneSectionExtensions.h

Include

#include "ExtensionLibraries/MovieSceneSectionExtensions.h"

Source

/Engine/Plugins/MovieScene/SequencerScripting/Source/SequencerScripting/Private/ExtensionLibraries/MovieSceneSectionExtensions.cpp

Syntax

[UFUNCTION](Programming/UnrealArchitecture/Reference/Functions)(BlueprintCallable, Category=Section, Meta=(ScriptMethod))
static TArray< UMovieSceneScriptingChannel * > FindChannelsByType
(
    UMovieSceneSection * Section,
    TSubclassOf< UMovieSceneScriptingChannel > ChannelType
)

Remarks

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.

Returns

An array containing any key channels that match the type specified

Parameters

Parameter

Description

Section

The section to use.

ChannelType

The class type to look for.

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss