Navigation
API > API/Editor > API/Editor/UnrealEd > API/Editor/UnrealEd/ULayersSubsystem
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TArray< AActor * > GetActorsFromLayers
(
const TArray< FName >& LayerNames |
Gets all the actors associated with ANY of the specified layers. | Layers/LayersSubsystem.h |
|
TArray< AActor * > GetActorsFromLayers
(
const TArray< FName >& LayerNames, |
Gets all the actors associated with ANY of the specified layers. | Layers/LayersSubsystem.h |
GetActorsFromLayers(const TArray< FName > &)
Description
Gets all the actors associated with ANY of the specified layers. Analog to AppendActorsFromLayers but it returns rather than appends the actors.
| Name | GetActorsFromLayers |
| Type | function |
| Header File | /Engine/Source/Editor/UnrealEd/Public/Layers/LayersSubsystem.h |
| Include Path | #include "Layers/LayersSubsystem.h" |
| Source | /Engine/Source/Editor/UnrealEd/Private/Layers/LayersSubsystem.cpp |
UFUNCTION (BlueprintCallable, Category=Layers)
TArray < AActor * > GetActorsFromLayers
(
const TArray < FName > & LayerNames
) const
The list to assign the found actors to.
Parameters
| Name | Remarks |
|---|---|
| LayerNames | The layers to find actors for. |
GetActorsFromLayers(const TArray< FName > &, const TSharedPtr< ActorFilter > &)
Description
Gets all the actors associated with ANY of the specified layers. Analog to AppendActorsFromLayers but it returns rather than appends the actors.
| Name | GetActorsFromLayers |
| Type | function |
| Header File | /Engine/Source/Editor/UnrealEd/Public/Layers/LayersSubsystem.h |
| Include Path | #include "Layers/LayersSubsystem.h" |
| Source | /Engine/Source/Editor/UnrealEd/Private/Layers/LayersSubsystem.cpp |
TArray < AActor * > GetActorsFromLayers
(
const TArray < FName > & LayerNames,
const TSharedPtr < ActorFilter > & Filter
) const
The list to assign the found actors to.
Parameters
| Name | Remarks |
|---|---|
| LayerNames | The layers to find actors for. |
| Filter | [optional] Actor that don't pass the specified filter restrictions won't be selected. |