Navigation
API > API/Runtime > API/Runtime/InterchangeEngine > API/Runtime/InterchangeEngine/UInterchangeManager
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool ConvertImportData
(
UObject* Asset, |
Call all the registered converters to see if any converter can convert the data. | InterchangeManager.h | |
bool ConvertImportData
(
const UObject* SourceImportData, |
Call all the registered converter, until one can convert the source import data to UInterchangeAssetImportData @Param SourceImportData - The source import data options. | InterchangeManager.h | |
bool ConvertImportData
(
const UObject* SourceImportData, |
Call all the registered converter, until one can convert the source data to the destination @Param SourceImportData - The source import data options. | InterchangeManager.h |
ConvertImportData(UObject *, const FString &)
Description
Call all the registered converters to see if any converter can convert the data. @Param Asset - The asset we want to convert the import data. @Param Extension - The file extension we want to import.
| Name | ConvertImportData |
| Type | function |
| Header File | /Engine/Source/Runtime/Interchange/Engine/Public/InterchangeManager.h |
| Include Path | #include "InterchangeManager.h" |
| Source | /Engine/Source/Runtime/Interchange/Engine/Private/InterchangeManager.cpp |
bool ConvertImportData
(
UObject * Asset,
const FString & Extension
) const
true if one of the converter has converted the data, or false otherwise.
ConvertImportData(const UObject *, FImportAssetParameters &)
Description
Call all the registered converter, until one can convert the source import data to UInterchangeAssetImportData @Param SourceImportData - The source import data options. @Param ImportAssetParameters - The interchange import asset parameters.
| Name | ConvertImportData |
| Type | function |
| Header File | /Engine/Source/Runtime/Interchange/Engine/Public/InterchangeManager.h |
| Include Path | #include "InterchangeManager.h" |
| Source | /Engine/Source/Runtime/Interchange/Engine/Private/InterchangeManager.cpp |
bool ConvertImportData
(
const UObject * SourceImportData,
FImportAssetParameters & ImportAssetParameters
) const
true if one of the converter has convert the data. False otherwise.
ConvertImportData(const UObject , const UClass , UObject **)
Description
Call all the registered converter, until one can convert the source data to the destination @Param SourceImportData - The source import data options. @Param DestinationImportData - The destination import data options we have to create and fill. @Param DestinationClass - The class representing the DestinationImportData
| Name | ConvertImportData |
| Type | function |
| Header File | /Engine/Source/Runtime/Interchange/Engine/Public/InterchangeManager.h |
| Include Path | #include "InterchangeManager.h" |
| Source | /Engine/Source/Runtime/Interchange/Engine/Private/InterchangeManager.cpp |
bool ConvertImportData
(
const UObject * SourceImportData,
const UClass * DestinationClass,
UObject ** DestinationImportData
) const
true if one of the converter has convert the data. False otherwise.