Navigation
API > API/Plugins > API/Plugins/InterchangeImport > API/Plugins/InterchangeImport/Fbx
Inheritance Hierarchy
- UObjectBase
- UObjectBaseUtility
- UObject
- UInterchangeTranslatorBase
- UInterchangeFbxTranslator
References
| Module | InterchangeImport |
| Header | /Engine/Plugins/Interchange/Runtime/Source/Import/Public/Fbx/InterchangeFbxTranslator.h |
| Include | #include "Fbx/InterchangeFbxTranslator.h" |
Syntax
UCLASS (BlueprintType)
class UInterchangeFbxTranslator :
public UInterchangeTranslatorBase ,
public IInterchangeTexturePayloadInterface ,
public IInterchangeMeshPayloadInterface ,
public IInterchangeAnimationPayloadInterface
Constructors
| Type | Name | Description | |
|---|---|---|---|
Functions
| Type | Name | Description | |
|---|---|---|---|
| void |
Overridden from UInterchangeTranslatorBase
| Type | Name | Description | |
|---|---|---|---|
| UInterchangeTranslatorSettings * | GetSettings () |
Return this translator settings | |
| EInterchangeTranslatorAssetType | |||
| TArray< FString > | List of formats supported by the translator. | ||
| EInterchangeTranslatorType | Specifies the capabilities of a translator. | ||
| void | ImportFinish () |
This function is call when the import is done (FImportAsyncHelper::CleanUp) and we are cleaning the data. | |
| bool | IsThreadSafe () |
Begin UInterchangeTranslatorBase API | |
| void | Release source is called when we do not need anymore the translator source and also early in the cancel process. | ||
| void | SetSettings
(
const UInterchangeTranslatorSettings* InterchangeTranslatorSettings |
Reimport will set the settings if they exist in UInterchangeAssetImportData | |
| bool | Translate
(
UInterchangeBaseNodeContainer& BaseNodeContainer |
Translate the associated source data into node(s) that are hold in the specified nodes container. |
Overridden from IInterchangeTexturePayloadInterface
| Type | Name | Description | |
|---|---|---|---|
| TOptional< UE::Interchange::FImportImage > | GetTexturePayloadData
(
const FString& PayloadKey, |
End UInterchangeTranslatorBase API Once the translation is done, the import process need a way to retrieve payload data. |
Overridden from IInterchangeMeshPayloadInterface
| Type | Name | Description | |
|---|---|---|---|
| TFuture< TOptional< UE::Interchange::FMeshPayloadData > > | GetMeshPayloadData
(
const FInterchangeMeshPayLoadKey& PayLoadKey, |
Once the translation is done, the import process need a way to retrieve payload data. |
Overridden from IInterchangeAnimationPayloadInterface
| Type | Name | Description | |
|---|---|---|---|
| TFuture< TOptional< UE::Interchange::FAnimationPayloadData > > | GetAnimationPayloadData
(
const FInterchangeAnimationPayLoadKey& PayLoadKey, |
* IInterchangeMeshPayloadInterface End */ IInterchangeAnimationPayloadInterface Begin |