Navigation
API > API/Plugins > API/Plugins/GooglePAD
The method used to store an Asset Pack on the device.
| Name | EGooglePADStorageMethod |
| Type | enum |
| Header File | /Engine/Plugins/Runtime/GooglePAD/Source/GooglePAD/Classes/GooglePADFunctionLibrary.h |
| Include Path | #include "GooglePADFunctionLibrary.h" |
Syntax
enum EGooglePADStorageMethod
{
AssetPack_STORAGE_FILES = 0,
AssetPack_STORAGE_APK,
AssetPack_STORAGE_UNKNOWN,
AssetPack_STORAGE_NOT_INSTALLED,
}
Values
| Name | Remarks |
|---|---|
| AssetPack_STORAGE_FILES | The Asset Pack is unpacked into a folder containing individual asset files. Assets can be accessed via standard File APIs. |
| AssetPack_STORAGE_APK | The Asset Pack is installed as an APK containing packed asset files. Assets can be accessed via AAssetManager. |
| AssetPack_STORAGE_UNKNOWN | Nothing is known, perhaps due to an error. |
| AssetPack_STORAGE_NOT_INSTALLED | The Asset Pack is not installed. |