Navigation
API > API/Editor > API/Editor/DataLayerEditor > API/Editor/DataLayerEditor/UDataLayerEditorSubsystem
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TArray< AActor * > GetActorsFromDataLayer
(
UDataLayerInstance* DataLayer |
Gets all the actors associated with the specified DataLayer. | DataLayer/DataLayerEditorSubsystem.h |
|
TArray< AActor * > GetActorsFromDataLayer
(
UDataLayerInstance* DataLayer, |
Gets all the actors associated with the specified DataLayer. | DataLayer/DataLayerEditorSubsystem.h |
GetActorsFromDataLayer(UDataLayerInstance *)
Description
Gets all the actors associated with the specified DataLayer. Analog to AppendActorsFromDataLayer but it returns rather than appends the actors.
| Name | GetActorsFromDataLayer |
| Type | function |
| Header File | /Engine/Source/Editor/DataLayerEditor/Public/DataLayer/DataLayerEditorSubsystem.h |
| Include Path | #include "DataLayer/DataLayerEditorSubsystem.h" |
| Source | /Engine/Source/Editor/DataLayerEditor/Private/DataLayer/DataLayerEditorSubsystem.cpp |
UFUNCTION (BlueprintCallable, Category=DataLayers)
TArray< AActor * > GetActorsFromDataLayer
(
UDataLayerInstance * DataLayer
) const
The list to assign the found actors to.
Parameters
| Name | Remarks |
|---|---|
| DataLayer | The DataLayer to find actors for. |
GetActorsFromDataLayer(UDataLayerInstance *, const TSharedPtr< FActorFilter > &)
Description
Gets all the actors associated with the specified DataLayer. Analog to AppendActorsFromDataLayer but it returns rather than appends the actors.
| Name | GetActorsFromDataLayer |
| Type | function |
| Header File | /Engine/Source/Editor/DataLayerEditor/Public/DataLayer/DataLayerEditorSubsystem.h |
| Include Path | #include "DataLayer/DataLayerEditorSubsystem.h" |
| Source | /Engine/Source/Editor/DataLayerEditor/Private/DataLayer/DataLayerEditorSubsystem.cpp |
TArray< AActor * > GetActorsFromDataLayer
(
UDataLayerInstance * DataLayer,
const TSharedPtr< FActorFilter > & Filter
) const
The list to assign the found actors to.
Parameters
| Name | Remarks |
|---|---|
| DataLayer | The DataLayer to find actors for. |
| Filter | [optional] Actor that don't pass the specified filter restrictions won't be selected. |