Navigation
API > API/Runtime > API/Runtime/AssetRegistry > API/Runtime/AssetRegistry/IAssetRegistry
Description
Requests that all AssetDatas that have been unloaded by ActiveMounts be reloaded. Calls OnComplete once the load completes.
| Name | ActiveMountsReloadAllAsync |
| Type | function |
| Header File | /Engine/Source/Runtime/AssetRegistry/Public/AssetRegistry/IAssetRegistry.h |
| Include Path | #include "AssetRegistry/IAssetRegistry.h" |
void ActiveMountsReloadAllAsync
(
TFunction< void(bool bCanceled)> OnComplete
)
Parameters
| Name | Remarks |
|---|---|
| OnComplete | Optional delegate: void OnComplete(bool bCanceled). Called when the load is complete. bCanceled is set to true iff ActiveMountsLoading is not enabled or for any MountPoint the load failed or was overridden by an unload request. OnComplete is called from an async thread, caller should handle thread safety in their callback. |