Navigation
API > API/Editor > API/Editor/DataLayerEditor > API/Editor/DataLayerEditor/UDataLayerEditorSubsystem
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool SelectActorsInDataLayers
(
const TArray< UDataLayerInstance* >& DataLayers, |
Selects/de-selects actors belonging to the DataLayers. | DataLayer/DataLayerEditorSubsystem.h |
|
bool SelectActorsInDataLayers
(
const TArray< UDataLayerInstance* >& DataLayers, |
Selects/de-selects actors belonging to the DataLayers. | DataLayer/DataLayerEditorSubsystem.h |
SelectActorsInDataLayers(const TArray< UDataLayerInstance * > &, const bool, const bool, const bool)
Description
Selects/de-selects actors belonging to the DataLayers.
| Name | SelectActorsInDataLayers |
| 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)
bool SelectActorsInDataLayers
(
const TArray< UDataLayerInstance * > & DataLayers,
const bool bSelect,
const bool bNotify,
const bool bSelectEvenIfHidden
)
true if at least one actor was selected/deselected.
Parameters
| Name | Remarks |
|---|---|
| DataLayers | A valid list of DataLayers. |
| bSelect | If true actors are selected; if false, actors are deselected. |
| bNotify | If true the Editor is notified of the selection change; if false, the Editor will not be notified |
| bSelectEvenIfHidden | [optional] If true even hidden actors will be selected; if false, hidden actors won't be selected. |
SelectActorsInDataLayers(const TArray< UDataLayerInstance * > &, const bool, const bool, const bool, const TSharedPtr< FActorFilter > &)
Description
Selects/de-selects actors belonging to the DataLayers.
| Name | SelectActorsInDataLayers |
| 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 |
bool SelectActorsInDataLayers
(
const TArray< UDataLayerInstance * > & DataLayers,
const bool bSelect,
const bool bNotify,
const bool bSelectEvenIfHidden,
const TSharedPtr< FActorFilter > & Filter
)
true if at least one actor was selected/deselected.
Parameters
| Name | Remarks |
|---|---|
| DataLayers | A valid list of DataLayers. |
| bSelect | If true actors are selected; if false, actors are deselected. |
| bNotify | If true the Editor is notified of the selection change; if false, the Editor will not be notified |
| bSelectEvenIfHidden | [optional] If true even hidden actors will be selected; if false, hidden actors won't be selected. |
| Filter | [optional] Actor that don't pass the specified filter restrictions won't be selected. |