Navigation
API > API/Runtime > API/Runtime/CoreUObject
Enum for the extensions that a package payload can be stored under. Each extension can be used by only one EPackageSegment EPackageSegment::Header segment has multiple possible extensions Use LexToString to convert an EPackageExtension to the extension string to append to a file's basename (e.g. LexToString(EPackageExtension::Asset) -> ".uasset" Exceptions: Unspecified ->
| Name | EPackageExtension |
| Type | enum |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/Misc/PackagePath.h |
| Include Path | #include "Misc/PackagePath.h" |
Syntax
enum EPackageExtension
{
Unspecified =0,
Asset,
Map,
TextAsset,
TextMap,
Custom,
EmptyString,
Exports,
BulkDataDefault,
BulkDataOptional,
BulkDataMemoryMapped,
PayloadSidecar,
Count,
}
Values
| Name | Remarks |
|---|---|
| Unspecified | Header Segments. |
| Asset | A binary-format header that does not contain a UWorld or ULevel |
| Map | A binary-format header that contains a UWorld or ULevel |
| TextAsset | A text-format header that does not contain a UWorld or ULevel |
| TextMap | A text-format header that contains a UWorld or ULevel |
| Custom | Used when the owner of an EPackageExtension has a specific extension that does not match one of the enumerated possibilies, e.g. a custom extension on a temp file |
| EmptyString | Used by iostore to indicate that the package should be requested with no extension |
| Exports | |
| BulkDataDefault | |
| BulkDataOptional | |
| BulkDataMemoryMapped | |
| PayloadSidecar | |
| Count |