Navigation
API > API/Runtime > API/Runtime/CoreUObject
Multiple meanings of dependency are used in the AssetRegistry; the category specifes which meaning is referred to. During queries for dependencies, the Category variable can be a bitfield combination of Category values, in which case dependencies in any of the specified categories are returned.
| Name | UE::AssetRegistry::EDependencyCategory |
| Type | enum |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/Misc/AssetRegistryInterface.h |
| Include Path | #include "Misc/AssetRegistryInterface.h" |
Syntax
namespace UE
{
namespace AssetRegistry
{
enum EDependencyCategory
{
Package = 0x01,
Manage = 0x02,
SearchableName = 0x04,
None = 0x0,
All = Package | Manage | SearchableName,
}
}
}
Values
| Name | Remarks |
|---|---|
| Package | This enum is serialized by value into the runtime AssetRegistry and the AssetDataGatherer. |
| Manage | |
| SearchableName | |
| None | |
| All |