Navigation
API > API/Plugins > API/Plugins/EditorScriptingUtilities > API/Plugins/EditorScriptingUtilities/UEditorLevelLibrary
Description
Create an actor and place it in the world editor. Can be created from a Blueprint or a Class. The actor will be created in the current level and will be selected.
| Name | SpawnActorFromClass |
| Type | function |
| Header File | /Engine/Plugins/Editor/EditorScriptingUtilities/Source/EditorScriptingUtilities/Public/EditorLevelLibrary.h |
| Include Path | #include "EditorLevelLibrary.h" |
| Source | /Engine/Plugins/Editor/EditorScriptingUtilities/Source/EditorScriptingUtilities/Private/EditorLevelLibrary.cpp |
UFUNCTION (BlueprintCallable, Category="Editor Scripting | Level Utility",
Meta=(DeterminesOutputType="ActorClass", KeyWords="Transient"))
static AActor * SpawnActorFromClass
(
TSubclassOf < class AActor > ActorClass,
FVector Location,
FRotator Rotation,
bool bTransient
)
The created actor.
Parameters
| Name | Remarks |
|---|---|
| ActorClass | Asset to attempt to use for an actor to place. |
| Location | Location of the new actor. |