Navigation
API > API/Runtime > API/Runtime/CoreUObject
Flags that modify how this derived data is saved and how it may be loaded.
| Name | UE::EDerivedDataFlags |
| Type | enum |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/Serialization/DerivedData.h |
| Include Path | #include "Serialization/DerivedData.h" |
Syntax
namespace UE
{
enum EDerivedDataFlags
{
None = 0,
Required = 1 << 0,
Optional = 1 << 1,
MemoryMapped = 1 << 2,
}
}
Values
| Name | Remarks |
|---|---|
| None | |
| Required | Stage the referenced data with required content. |
| Optional | Stage the referenced data with optional content. |
| MemoryMapped | Stage the referenced data with alignment padding to allow memory-mapped access on supported platforms. |