Navigation
API > API/Editor > API/Editor/UnrealEd > API/Editor/UnrealEd/UEditorLevelUtils
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static int32 MoveSelectedActorsToLevel
(
ULevelStreaming* DestLevel, |
Moves the currently selected actors to the specified streaming level. | EditorLevelUtils.h |
|
static int32 MoveSelectedActorsToLevel
(
ULevel* DestLevel, |
Move selected actors to destination level. | EditorLevelUtils.h |
MoveSelectedActorsToLevel(ULevelStreaming *, bool)
Description
Moves the currently selected actors to the specified streaming level. The new actors will be selected
| Name | MoveSelectedActorsToLevel |
| Type | function |
| Header File | /Engine/Source/Editor/UnrealEd/Public/EditorLevelUtils.h |
| Include Path | #include "EditorLevelUtils.h" |
| Source | /Engine/Source/Editor/UnrealEd/Private/EditorLevelUtils.cpp |
UFUNCTION (BlueprintCallable, Category="Editor Scripting | Level Creation")
static int32 MoveSelectedActorsToLevel
(
ULevelStreaming * DestLevel,
bool bWarnAboutReferences
)
The number of actors that were successfully moved to the new level
Parameters
| Name | Remarks |
|---|---|
| DestStreamingLevel | The destination streaming level of the current world to move the actors to |
| bWarnAboutReferences | Whether or not to show a modal warning about referenced actors that may no longer function after being moved |
MoveSelectedActorsToLevel(ULevel *, bool)
Description
Move selected actors to destination level.
| Name | MoveSelectedActorsToLevel |
| Type | function |
| Header File | /Engine/Source/Editor/UnrealEd/Public/EditorLevelUtils.h |
| Include Path | #include "EditorLevelUtils.h" |
| Source | /Engine/Source/Editor/UnrealEd/Private/EditorLevelUtils.cpp |
static int32 MoveSelectedActorsToLevel
(
ULevel * DestLevel,
bool bWarnAboutReferences
)
Returns the number of actors copied.
Parameters
| Name | Remarks |
|---|---|
| DestLevel | Destination level to move the actors to. |
| bWarnAboutReferences | Whether or not to show a modal warning about referenced actors that may no longer function after being copied. |