Navigation
API > API/Plugins > API/Plugins/GooglePAD
The status associated with Asset Pack download operations.
| Name | EGooglePADDownloadStatus |
| Type | enum |
| Header File | /Engine/Plugins/Runtime/GooglePAD/Source/GooglePAD/Classes/GooglePADFunctionLibrary.h |
| Include Path | #include "GooglePADFunctionLibrary.h" |
Syntax
enum EGooglePADDownloadStatus
{
AssetPack_UNKNOWN = 0,
AssetPack_DOWNLOAD_PENDING,
AssetPack_DOWNLOADING,
AssetPack_TRANSFERRING,
AssetPack_DOWNLOAD_COMPLETED,
AssetPack_DOWNLOAD_FAILED,
AssetPack_DOWNLOAD_CANCELED,
AssetPack_WAITING_FOR_WIFI,
AssetPack_NOT_INSTALLED,
AssetPack_INFO_PENDING,
AssetPack_INFO_FAILED,
AssetPack_REMOVAL_PENDING,
AssetPack_REMOVAL_FAILED,
AssetPack_REQUIRES_USER_CONFIRMATION,
}
Values
| Name | Remarks |
|---|---|
| AssetPack_UNKNOWN | Nothing is known about the Asset Pack. |
| AssetPack_DOWNLOAD_PENDING | An AssetPackManager_requestDownload() async request is pending. |
| AssetPack_DOWNLOADING | The Asset Pack download is in progress. |
| AssetPack_TRANSFERRING | The Asset Pack is being transferred to the app. |
| AssetPack_DOWNLOAD_COMPLETED | Download and transfer are complete; the assets are available to the app. |
| AssetPack_DOWNLOAD_FAILED | An AssetPackManager_requestDownload() has failed. |
| AssetPack_DOWNLOAD_CANCELED | Asset Pack download has been canceled. |
| AssetPack_WAITING_FOR_WIFI | The Asset Pack download is waiting for Wi-Fi to proceed. |
| AssetPack_NOT_INSTALLED | The Asset Pack isn't installed. |
| AssetPack_INFO_PENDING | An AssetPackManager_requestInfo() async request started, but the result isn't known yet. |
| AssetPack_INFO_FAILED | An AssetPackManager_requestInfo() async request has failed. |
| AssetPack_REMOVAL_PENDING | An AssetPackManager_requestRemoval() async request started. |
| AssetPack_REMOVAL_FAILED | An AssetPackManager_requestRemoval() async request has failed. |
| AssetPack_REQUIRES_USER_CONFIRMATION | The Asset Pack download is waiting for user confirmation to proceed. |