EPackageInfoFlags

These bit flag values represent the different types of information that can be reported about a package

Windows
MacOS
Linux

References

Module

UnrealEd

Header

/Engine/Source/Editor/UnrealEd/Public/PackageUtilityWorkers.h

Include

#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

Description

PKGINFO_None

PKGINFO_Names

PKGINFO_Imports

PKGINFO_Exports

PKGINFO_Compact

PKGINFO_Depends

PKGINFO_Paths

PKGINFO_Thumbs

PKGINFO_Lazy

PKGINFO_AssetRegistry

PKGINFO_Text

PKGINFO_All

Remarks

These bit flag values represent the different types of information that can be reported about a package

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss