Navigation
API > API/Developer > API/Developer/AssetTools > API/Developer/AssetTools/IAssetTools
Description
Find the asset data for the specified Verse path
Verse paths to objects can be ambiguous. This function can be expensive for certain Verse paths.
| Name | FindAssetByVersePath |
| Type | function |
| Header File | /Engine/Source/Developer/AssetTools/Public/IAssetTools.h |
| Include Path | #include "IAssetTools.h" |
FAssetData FindAssetByVersePath
(
const UE::Core::FVersePath & VersePath,
bool bIncludeOnlyOnDiskAssets,
bool bSkipARFilteredAssets
) const
the assets data; Will be invalid if object could not be found
Parameters
| Name | Remarks |
|---|---|
| VersePath | the Verse path of the object to be looked up |
| bIncludeOnlyOnDiskAssets | If true, use only DiskGatheredData, do not calculate from UObjects. |
| bSkipARFilteredAssets | If true, skips Objects that return true for IsAsset but are not assets in the current platform. |
See Also
- IAssetRegistry class header for bIncludeOnlyOnDiskAssets.