Navigation
API > API/Runtime > API/Runtime/IoStoreOnDemandCore
Options for controlling the behavior of the install request.
| Name | UE::IoStore::EOnDemandInstallOptions |
| Type | enum |
| Header File | /Engine/Source/Runtime/Experimental/IoStore/OnDemandCore/Public/IO/IoStoreOnDemand.h |
| Include Path | #include "IO/IoStoreOnDemand.h" |
Syntax
namespace UE
{
namespace IoStore
{
enum EOnDemandInstallOptions
{
None = 0,
CallbackOnGameThread = 1 << 0,
InstallSoftReferences = 1 << 1,
InstallOptionalBulkData = 1 << 2,
DoNotDownload = 1 << 3,
AllowMissingDependencies = 1 << 4,
}
}
}
Values
| Name | Remarks |
|---|---|
| None | No additional options. |
| CallbackOnGameThread | Trigger callback on game thread. |
| InstallSoftReferences | Follow soft references when gathering packages to install. |
| InstallOptionalBulkData | Install optional bulk data. |
| DoNotDownload | Do not install any data, only succeed if all data is already cached. |
| AllowMissingDependencies | Do not return an error if missing iochunk dependencies are missing. |