Navigation
API > API/Runtime > API/Runtime/AssetRegistry
| |
|
| Name |
EAssetsWithOuterForPathsFlags |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/AssetRegistry/Public/AssetRegistry/AssetRegistryHelpers.h |
| Include Path |
#include "AssetRegistry/AssetRegistryHelpers.h" |
Syntax
enum EAssetsWithOuterForPathsFlags
{
None = 0,
RecursivePaths = (1 << 0),
IncludeOnlyOnDiskAsset = (1 << 1),
ExactOuter = (1 << 2),
ScanPaths = (1 << 3),
}
Values
| Name |
Remarks |
| None |
|
| RecursivePaths |
If we should scan recursively or not. |
| IncludeOnlyOnDiskAsset |
If we should only include on disk assets. |
| ExactOuter |
If we should only return assets directly outered to the provided outer. |
| ScanPaths |
Scan the AssetRegistry for each path passed in. |