Navigation
API > API/Runtime > API/Runtime/Core
This enum describes the reasons why a payload may not be virtualized
| Name | UE::Virtualization::EPayloadFilterReason |
| Type | enum |
| Header File | /Engine/Source/Runtime/Core/Public/Virtualization/VirtualizationTypes.h |
| Include Path | #include "Virtualization/VirtualizationTypes.h" |
Syntax
namespace UE
{
namespace Virtualization
{
enum EPayloadFilterReason
{
None = 0,
Asset = 1 << 0,
Path = 1 << 1,
MinSize = 1 << 2,
EditorBulkDataCode = 1 << 3,
MapContent = 1 << 4,
}
}
}
Values
| Name | Remarks |
|---|---|
| None | Not filtered, the payload can be virtualized |
| Asset | Filtered due to the asset type of the owning UObject |
| Path | Filtered due to the path of the owning UPackage |
| MinSize | Filtered because the payload size is below the minimum size for virtualization |
| EditorBulkDataCode | Filtered because the owning editor bulkdata had virtualization disabled programmatically |
| MapContent | Filtered because the package is either a UMap or the owning editor bulkdata is under a UMapBuildDataRegistry |