Navigation
Unreal Engine C++ API Reference > Plugins > GooglePAD
References
Module | GooglePAD |
Header | /Engine/Plugins/Runtime/GooglePAD/Source/GooglePAD/Classes/GooglePADFunctionLibrary.h |
Include | #include "GooglePADFunctionLibrary.h" |
Syntax
enum EGooglePADDownloadStatus
&123;
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,
&125;
Values
Name | Description |
---|---|
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. |
Remarks
The status associated with Asset Pack download operations.