OnlinePicoAssetFile Blueprint Function class.
More...
#include <Pico_AssetFile.h>
|
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.
◆ DeleteByID()
static bool DeleteByID |
( |
UObject * |
WorldContextObject, |
|
|
FString |
AssetFileID, |
|
|
FAssetFileDeleteResult |
InDeleteByIDDelegate |
|
) |
| |
|
static |
Deletes an installed asset file by asset file ID. The corresponding asset file will be removed from the device.
- Parameters
-
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. |
- Returns
- Bool:
-
true
: success
-
false
: failure
◆ DeleteByName()
static bool DeleteByName |
( |
UObject * |
WorldContextObject, |
|
|
FString |
AssetFileName, |
|
|
FAssetFileDeleteResult |
InDeleteByNameDelegate |
|
) |
| |
|
static |
Deletes an installed asset file by asset file name. The corresponding asset file will be removed from the device.
- Parameters
-
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. |
- Returns
- Bool:
-
true
: success
-
false
: failure
◆ DownloadById()
static bool DownloadById |
( |
UObject * |
WorldContextObject, |
|
|
FString |
AssetFileID, |
|
|
FAssetFileDownloadResult |
InDownloadByIDDelegate |
|
) |
| |
|
static |
Downloads an asset file by asset file ID.
- Parameters
-
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. |
- Returns
- Bool:
-
true
: success
-
false
: failure
◆ DownloadByName()
static bool DownloadByName |
( |
UObject * |
WorldContextObject, |
|
|
FString |
AssetFileName, |
|
|
FAssetFileDownloadResult |
InDownloadByNameDelegate |
|
) |
| |
|
static |
Downloads an asset file by asset file name.
- Parameters
-
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. |
- Returns
- Bool:
-
true
: success
-
false
: failure
◆ DownloadCancelById()
static bool DownloadCancelById |
( |
UObject * |
WorldContextObject, |
|
|
FString |
AssetFileID, |
|
|
FAssetFileDownloadCancelResult |
InDownloadCancelByIDDelegate |
|
) |
| |
|
static |
Cancels the download of an asset file by asset file ID.
- Parameters
-
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. |
- Returns
- Bool:
-
true
: success
-
false
: failure
◆ DownloadCancelByName()
static bool DownloadCancelByName |
( |
UObject * |
WorldContextObject, |
|
|
FString |
AssetFileName, |
|
|
FAssetFileDownloadCancelResult |
InDownloadCancelByNameDelegate |
|
) |
| |
|
static |
Cancels the download of an asset file by asset file name.
- Parameters
-
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. |
- Returns
- Bool:
-
true
: success
-
false
: failure
◆ GetAssetFileList()
static bool GetAssetFileList |
( |
UObject * |
WorldContextObject, |
|
|
FGetAssetFileList |
InGetAssetFileListDelegate |
|
) |
| |
|
static |
Gets the asset file list.
- Parameters
-
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. |
- Returns
- Bool:
-
true
: success
-
false
: failure
◆ GetAssetFileStatusById()
static bool GetAssetFileStatusById |
( |
UObject * |
WorldContextObject, |
|
|
FString |
AssetFileID, |
|
|
FGetAssetFileStatus |
InGetAssetFileStatusByIdDelegate |
|
) |
| |
|
static |
Gets the download status of an asset file by asset file ID.
- Parameters
-
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. |
- Returns
- Bool:
-
true
: success
-
false
: failure
◆ GetAssetFileStatusByName()
static bool GetAssetFileStatusByName |
( |
UObject * |
WorldContextObject, |
|
|
FString |
AssetFileName, |
|
|
FGetAssetFileStatus |
InGetAssetFileStatusByNameDelegate |
|
) |
| |
|
static |
Gets the download status of an asset file by asset file name.
- Parameters
-
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. |
- Returns
- Bool:
-
true
: success
-
false
: failure
◆ GetNextAssetDetailsArrayPage()
static bool GetNextAssetDetailsArrayPage |
( |
UObject * |
WorldContextObject, |
|
|
UPico_AssetDetailsArray * |
InAssetDetailsArray, |
|
|
FGetAssetFileList |
InGetNextAssetDetailsArrayPageDelegate |
|
) |
| |
|
static |
Gets the next page of the asset file list.
- Parameters
-
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. |
- Returns
- Bool:
-
true
: success
-
false
: failure