|
PICO Unreal Platform SDK
|
OnlinePicoAssetFile Blueprint Function class. More...
#include <Pico_AssetFile.h>
Static Public Member Functions | |
| static bool | DeleteByID (UObject *WorldContextObject, FString AssetFileID, FAssetFileDeleteResult InDeleteByIDDelegate) |
| Deletes an installed asset file by asset file ID. The corresponding asset file will be removed from the device. More... | |
| static bool | DeleteByName (UObject *WorldContextObject, FString AssetFileName, FAssetFileDeleteResult InDeleteByNameDelegate) |
| Deletes an installed asset file by asset file name. The corresponding asset file will be removed from the device. More... | |
| static bool | DownloadById (UObject *WorldContextObject, FString AssetFileID, FAssetFileDownloadResult InDownloadByIDDelegate) |
| Downloads an asset file by asset file ID. More... | |
| static bool | DownloadByName (UObject *WorldContextObject, FString AssetFileName, FAssetFileDownloadResult InDownloadByNameDelegate) |
| Downloads an asset file by asset file name. More... | |
| static bool | DownloadCancelById (UObject *WorldContextObject, FString AssetFileID, FAssetFileDownloadCancelResult InDownloadCancelByIDDelegate) |
| Cancels the download of an asset file by asset file ID. More... | |
| static bool | DownloadCancelByName (UObject *WorldContextObject, FString AssetFileName, FAssetFileDownloadCancelResult InDownloadCancelByNameDelegate) |
| Cancels the download of an asset file by asset file name. More... | |
| static bool | GetAssetFileList (UObject *WorldContextObject, FGetAssetFileList InGetAssetFileListDelegate) |
| Gets the asset file list. More... | |
| static bool | GetNextAssetDetailsArrayPage (UObject *WorldContextObject, UPico_AssetDetailsArray *InAssetDetailsArray, FGetAssetFileList InGetNextAssetDetailsArrayPageDelegate) |
| Gets the next page of the asset file list. More... | |
| static bool | GetAssetFileStatusById (UObject *WorldContextObject, FString AssetFileID, FGetAssetFileStatus InGetAssetFileStatusByIdDelegate) |
| Gets the download status of an asset file by asset file ID. More... | |
| static bool | GetAssetFileStatusByName (UObject *WorldContextObject, FString AssetFileName, FGetAssetFileStatus InGetAssetFileStatusByNameDelegate) |
| Gets the download status of an asset file by asset file name. More... | |
OnlinePicoAssetFile Blueprint Function class.
|
static |
Deletes an installed asset file by asset file ID. The corresponding asset file will be removed from the device.
| WorldContextObject | Used to get the information about the current world. |
| AssetFileID | The ID of the installed asset file to delete. |
| InDeleteByIDDelegate | Will be executed when the request has been completed. Delegate will contain the requested object class (bool, bIsError, const FString&, ErrorMessage, UPico_AssetFileDeleteResult *, DeleteResult). |
true: success false: failure
|
static |
Deletes an installed asset file by asset file name. The corresponding asset file will be removed from the device.
| WorldContextObject | Used to get the information about the current world. |
| AssetFileName | The name of the installed asset file to delete. |
| InDeleteByNameDelegate | Will be executed when the request has been completed. Delegate will contain the requested object class (bool, bIsError, const FString&, ErrorMessage, UPico_AssetFileDeleteResult *, DeleteResult). |
true: success false: failure
|
static |
Downloads an asset file by asset file ID.
| WorldContextObject | The ID of the asset file to download. |
| AssetFileID | The asset file ID. |
| InDownloadByIDDelegate | Will be executed when the request has been completed. Delegate will contain the requested object class (bool, bIsError, const FString&, ErrorMessage, UPico_AssetFileDownloadResult *, DownloadResult). |
true: success false: failure
|
static |
Downloads an asset file by asset file name.
| WorldContextObject | Used to get the information about the current world. |
| AssetFileName | The name of the asset file to download. |
| InDownloadByNameDelegate | Will be executed when the request has been completed. Delegate will contain the requested object class (bool, bIsError, const FString&, ErrorMessage, UPico_AssetFileDownloadResult *, DownloadResult). |
true: success false: failure
|
static |
Cancels the download of an asset file by asset file ID.
| WorldContextObject | Used to get the information about the current world. |
| AssetFileID | The ID of the asset file to cancel download for. |
| InDownloadCancelByIDDelegate | Will be executed when the request has been completed. Delegate will contain the requested object class (bool, bIsError, const FString&, ErrorMessage, UPico_AssetFileDownloadCancelResult *, DownloadCancelResult). |
true: success false: failure
|
static |
Cancels the download of an asset file by asset file name.
| WorldContextObject | Used to get the information about the current world. |
| AssetFileName | The name of the asset file to cancel download for. |
| InDownloadCancelByNameDelegate | Will be executed when the request has been completed. Delegate will contain the requested object class (bool, bIsError, const FString&, ErrorMessage, UPico_AssetFileDownloadCancelResult *, DownloadCancelResult). |
true: success false: failure
|
static |
Gets the asset file list.
| WorldContextObject | Used to get the information about the current world. |
| InGetAssetFileListDelegate | Will be executed when the request has been completed. Delegate will contain the requested object class (bool, bIsError, const FString&, ErrorMessage, UPico_AssetDetailsArray *, AssetDetailsArray). |
true: success false: failure
|
static |
Gets the download status of an asset file by asset file ID.
| WorldContextObject | Used to get the information about the current world. |
| AssetFileID | The ID of the asset file to get the download status for. |
| InGetAssetFileStatusByIdDelegate | Will be executed when the request has been completed. Delegate will contain the requested object class (bool, bIsError, const FString&, ErrorMessage, UPico_AssetStatus *, AssetFileStatus). |
true: success false: failure
|
static |
Gets the download status of an asset file by asset file name.
| WorldContextObject | Used to get the information about the current world. |
| AssetFileName | The name of the asset file to get the download status for. |
| InGetAssetFileStatusByNameDelegate | Will be executed when the request has been completed. Delegate will contain the requested object class (bool, bIsError, const FString&, ErrorMessage, UPico_AssetStatus *, AssetFileStatus). |
true: success false: failure
|
static |
Gets the next page of the asset file list.
| WorldContextObject | Used to get the information about the current world. |
| InAssetDetailsArray | The current asset details array object. |
| InGetNextAssetDetailsArrayPageDelegate | Will be executed when the request has been completed. Delegate will contain the requested object class (bool, bIsError, const FString&, ErrorMessage, UPico_AssetDetailsArray *, AssetDetailsArray). |
true: success false: failure