Navigation
API > API/Plugins > API/Plugins/SequencerScripting
Function library containing methods that should be hoisted onto UMovieSceneFolders for scripting
| Name | UMovieSceneFolderExtensions |
| Type | class |
| Header File | /Engine/Plugins/MovieScene/SequencerScripting/Source/SequencerScripting/Public/ExtensionLibraries/MovieSceneFolderExtensions.h |
| Include Path | #include "ExtensionLibraries/MovieSceneFolderExtensions.h" |
Syntax
UCLASS ()
class UMovieSceneFolderExtensions : public UBlueprintFunctionLibrary
Inheritance Hierarchy
- UObjectBase → UObjectBaseUtility → UObject → UBlueprintFunctionLibrary → UMovieSceneFolderExtensions
Functions
Static
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static bool AddChildFolder
(
UMovieSceneFolder* TargetFolder, |
Add a child folder to the target folder | ExtensionLibraries/MovieSceneFolderExtensions.h |
|
static bool AddChildObjectBinding
(
UMovieSceneFolder* Folder, |
Add a guid for an object binding to this folder | ExtensionLibraries/MovieSceneFolderExtensions.h |
|
static bool AddChildTrack
(
UMovieSceneFolder* Folder, |
Add a track to this folder | ExtensionLibraries/MovieSceneFolderExtensions.h |
|
static TArray< UMovieSceneFolder * > GetChildFolders
(
UMovieSceneFolder* Folder |
Get the child folders of a given folder | ExtensionLibraries/MovieSceneFolderExtensions.h |
|
static TArray< FMovieSceneBindingProxy > GetChildObjectBindings
(
UMovieSceneFolder* Folder |
Get the object bindings contained by this folder | ExtensionLibraries/MovieSceneFolderExtensions.h |
|
static TArray< UMovieSceneTrack * > GetChildTracks
(
UMovieSceneFolder* Folder |
Get the tracks contained by this folder | ExtensionLibraries/MovieSceneFolderExtensions.h |
|
static FColor GetFolderColor
(
UMovieSceneFolder* Folder |
Get the display color of the given folder | ExtensionLibraries/MovieSceneFolderExtensions.h |
|
static FName GetFolderName
(
UMovieSceneFolder* Folder |
Get the given folder's display name | ExtensionLibraries/MovieSceneFolderExtensions.h |
|
static bool RemoveChildFolder
(
UMovieSceneFolder* TargetFolder, |
Remove a child folder from the given folder | ExtensionLibraries/MovieSceneFolderExtensions.h |
|
static bool RemoveChildObjectBinding
(
UMovieSceneFolder* Folder, |
Remove an object binding from the given folder | ExtensionLibraries/MovieSceneFolderExtensions.h |
|
static bool RemoveChildTrack
(
UMovieSceneFolder* Folder, |
Remove a track from the given folder | ExtensionLibraries/MovieSceneFolderExtensions.h |
|
static bool SetFolderColor
(
UMovieSceneFolder* Folder, |
Set the display color of the given folder | ExtensionLibraries/MovieSceneFolderExtensions.h |
|
static bool SetFolderName
(
UMovieSceneFolder* Folder, |
Set the name of the given folder | ExtensionLibraries/MovieSceneFolderExtensions.h |
|