Navigation
API > API/Runtime > API/Runtime/LevelSequence > API/Runtime/LevelSequence/ULevelSequence
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
UObject * CopyMetaData
(
UObject* InMetaData |
Copy the specified meta data into this level sequence, overwriting any existing meta-data of the same type Meta-data may implement the ILevelSequenceMetaData interface in order to hook into default ULevelSequence functionality. | LevelSequence.h |
|
MetaDataType * CopyMetaData
(
MetaDataType* InMetaData |
Copy the specified meta data into this level sequence, overwriting any existing meta-data of the same type Meta-data may implement the ILevelSequenceMetaData interface in order to hook into default ULevelSequence functionality. | LevelSequence.h |
CopyMetaData(UObject *)
Description
Copy the specified meta data into this level sequence, overwriting any existing meta-data of the same type Meta-data may implement the ILevelSequenceMetaData interface in order to hook into default ULevelSequence functionality.
| Name | CopyMetaData |
| Type | function |
| Header File | /Engine/Source/Runtime/LevelSequence/Public/LevelSequence.h |
| Include Path | #include "LevelSequence.h" |
UFUNCTION (BlueprintCallable, Category="Level Sequence", Meta=(DevelopmentOnly))
UObject * CopyMetaData
(
UObject * InMetaData
)
The newly copied instance of the Metadata that now exists on this sequence.
Parameters
| Name | Remarks |
|---|---|
| InMetaData | Existing Metadata Object that you wish to copy into this Level Sequence. |
CopyMetaData(MetaDataType *)
Description
Copy the specified meta data into this level sequence, overwriting any existing meta-data of the same type Meta-data may implement the ILevelSequenceMetaData interface in order to hook into default ULevelSequence functionality.
| Name | CopyMetaData |
| Type | function |
| Header File | /Engine/Source/Runtime/LevelSequence/Public/LevelSequence.h |
| Include Path | #include "LevelSequence.h" |
template<typename MetaDataType>
MetaDataType * CopyMetaData
(
MetaDataType * InMetaData
)