Navigation
API > API/Plugins > API/Plugins/InterchangeEditorPipelines
Inheritance Hierarchy
- UObjectBase
- UObjectBaseUtility
- UObject
- UInterchangePipelineBase
- UInterchangeGraphInspectorPipeline
References
| Module | InterchangeEditorPipelines |
| Header | /Engine/Plugins/Interchange/Editor/Source/Pipelines/Public/InterchangeGraphInspectorPipeline.h |
| Include | #include "InterchangeGraphInspectorPipeline.h" |
Syntax
UCLASS&40;BlueprintType&41;
class UInterchangeGraphInspectorPipeline : public UInterchangePipelineBase
Remarks
This pipeline is the generic pipeline option for all meshes type and should be call before specialized Mesh pipeline (like generic static mesh or skeletal mesh pipelines) All shared import options between mesh type should be added here.
UPROPERTY possible meta values: ImportOnly - Boolean, the property is use only when we import not when we re-import. Cannot be mix with ReimportOnly! ReimportOnly - Boolean, the property is use only when we re-import not when we import. Cannot be mix with ImportOnly! MeshType - String, the property is for static or skeletal or both (static | skeletal) mesh type. If not specified it will apply to all mesh type.
Overridden from UInterchangePipelineBase
| Type | Name | Description | |
|---|---|---|---|
| bool | CanExecuteOnAnyThread
(
EInterchangePipelineTask PipelineTask |
This function tell the interchange manager if we can execute this pipeline in async mode. | |
| void | ExecutePipeline
(
UInterchangeBaseNodeContainer* BaseNodeContainer, |
This function is called after the translation is done. | |
| bool | END Pre import pipeline properties. |