Navigation
API > API/Editor > API/Editor/UnrealEd
These bit flag values represent the different types of information that can be reported about a package
| Name | EPackageInfoFlags |
| Type | enum |
| Header File | /Engine/Source/Editor/UnrealEd/Public/PackageUtilityWorkers.h |
| Include Path | #include "PackageUtilityWorkers.h" |
Syntax
enum EPackageInfoFlags
{
PKGINFO_None =0x00,
PKGINFO_Names =0x01,
PKGINFO_Imports =0x02,
PKGINFO_Exports =0x04,
PKGINFO_Compact =0x08,
PKGINFO_Depends =0x20,
PKGINFO_Paths =0x40,
PKGINFO_Thumbs =0x80,
PKGINFO_Lazy =0x100,
PKGINFO_AssetRegistry =0x200,
PKGINFO_Text =0x400,
PKGINFO_All = PKGINFO_Names|PKGINFO_Imports|PKGINFO_Exports|PKGINFO_Depends|PKGINFO_Paths|PKGINFO_Thumbs|PKGINFO_Lazy|PKGINFO_AssetRegistry|PKGINFO_Text,
}
Values
| Name | Remarks |
|---|---|
| PKGINFO_None | |
| PKGINFO_Names | |
| PKGINFO_Imports | |
| PKGINFO_Exports | |
| PKGINFO_Compact | |
| PKGINFO_Depends | |
| PKGINFO_Paths | |
| PKGINFO_Thumbs | |
| PKGINFO_Lazy | |
| PKGINFO_AssetRegistry | |
| PKGINFO_Text | |
| PKGINFO_All |