Navigation
API > API/Editor > API/Editor/ContentBrowserData > API/Editor/ContentBrowserData/UContentBrowserDataSource
Description
Attempt to convert the given asset data to a virtual path associated with this data source.
This exists to allow the Content Browser to interface with public APIs that only operate on asset data and should ideally be avoided for new code.
This function only adjusts the path to something that could represent a virtualized item within this data source, but it doesn't guarantee that an item actually exists at that path.
| Name | Legacy_TryConvertAssetDataToVirtualPath |
| Type | function |
| Header File | /Engine/Source/Editor/ContentBrowserData/Public/ContentBrowserDataSource.h |
| Include Path | #include "ContentBrowserDataSource.h" |
| Source | /Engine/Source/Editor/ContentBrowserData/Private/ContentBrowserDataSource.cpp |
virtual bool Legacy_TryConvertAssetDataToVirtualPath
(
const FAssetData & InAssetData,
const bool InUseFolderPaths,
FName & OutPath
)
True if the asset data was mapped, false otherwise.
Parameters
| Name | Remarks |
|---|---|
| InAssetData | The asset data to query. |
| InUseFolderPaths | True if this conversion is for the paths view (so should use the parent folder of an asset), or false if it is for the asset view. |
| OutPath | The virtualized path to fill. |