Skip to content

Simplygon Subsystem for Python

Subsystem Methods

NameDescription
is_job_result_availableChecks if the job with the given job id has completed and if its result is available to fetch.
wait_for_job_to_completeWaits until the specified job is finished. Returns directly if no job with the given ID has been scheduled.
wait_for_all_jobs_to_completeWaits until all scheduled subsystem jobs are finished.
export_actors_to_sceneRun an async export job of the given actors using the given export settings.
export_static_mesh_components_to_sceneRun an async export job for the given static mesh components using the given export settings.
export_static_mesh_to_sceneRun an async export job for the given static mesh using the given export settings.
retrieve_export_scene_resultRetrieves the result of a job created using the Export[Actors
import_scene_as_actorsRun an async import job using the given import settings to spawn imported actors into the given world.
import_scene_as_static_meshesRun an async import job using the given import settings to import Static Meshes into the project.
retrieve_import_scene_resultRetrieves the result of a job created using the ImportScene function.

Subsystem Properties

NameDescription
on_export_scene_completedDelegate type for triggering when an export job is completed.
on_import_scene_completedDelegate type for triggering when an import job is completed.

Data structs

NameDescription
SubsystemJobResultStruct holding a result coming out of a SimplygonSubsystem job.
ExportSceneResultThe result coming out of an Export[Actors
ImportSceneResultThe result coming out of an ImportScene SimplygonSubsystem job.
SgSceneImportSettingsImport settings to use when importing a Simplygon scene.
SgGeometryImportSettingsImport settings to use when importing a Simplygon geometry data to a FMeshDescription.
SgMaterialImportSettingsImport settings to use when importing a Simplygon material to UMaterialInterface.
SgComponentExportSettingsExport settings to use when exporting a UStaticMeshComponent.
SgGeneralExportSettingsGeneral export settings
SgMeshExportSettingsSettings used to setup Simplygon API scene when exporting an individual UStaticMesh.
SgSceneMeshExportSettingsSettings used to setup Simplygon API scene when exporting a UStaticMesh as part of a scene.
SgSceneExportSettingsExport settings to use when exporting a Simplygon scene.
SgGeometryExportSettingsExport settings for geometry data to use when exporting a Simplygon scene.
SgMaterialExportSettingsExport settings for material data to use when exporting a Simplygon scene.
SgMaterialPropertiesThe material properties that are enabled will get flattened to textures, and exported with the scene.

Enums

NameDescription
SgSeparateMaterialsModeThe material separation mode to use when there is unique data sampled in a material.
SgSourceModelExportModeThis enum specifies which source model to export.

Functions details

is_job_result_available

Checks if the job with the given job id has completed and if its result is available to fetch.

wait_for_job_to_complete

Waits until the specified job is finished. Returns directly if no job with the given ID has been scheduled.

wait_for_all_jobs_to_complete

Waits until all scheduled subsystem jobs are finished.

export_actors_to_scene

Run an async export job of the given actors using the given export settings. Possible to bind a delegate callback to the OnExportSceneCompleted (from Python/Blueprints) or add a delegate to the native callback using GetNativeOnExportSceneCompleted (C++) which will be called when the export job is finished.

export_static_mesh_components_to_scene

Run an async export job for the given static mesh components using the given export settings. Possible to bind a delegate callback to the OnExportSceneCompleted (from Python/Blueprints) or add a delegate to the native callback using GetNativeOnExportSceneCompleted (C++) which will be called when the export job is finished.

export_static_mesh_to_scene

Run an async export job for the given static mesh using the given export settings. Possible to bind a delegate callback to the OnExportSceneCompleted (from Python/Blueprints) or add a delegate to the native callback using GetNativeOnExportSceneCompleted (C++) which will be called when the export job is finished.

retrieve_export_scene_result

Retrieves the result of a job created using the Export[Actors|StaticMeshComponents|StaticMesh]ToScene function. May include errors that should be checked before working with the data. Will wait until the job is completed if it hasn't already. If you don't want to implement a synchronous workflow, use the matching callback which will get the result directly or make sure to create all your Export[Actors|StaticMeshComponents|StaticMesh] jobs before retrieving the result for any of them.

import_scene_as_actors

Run an async import job using the given import settings to spawn imported actors into the given world. Possible to bind a delegate callback to the OnImportSceneCompleted (from Python/Blueprints) or add a delegate to the native callback using GetNativeOnImportSceneCompleted (C++) which will be called when the import job is finished.

import_scene_as_static_meshes

Run an async import job using the given import settings to import Static Meshes into the project. Possible to bind a delegate callback to the OnImportSceneCompleted (from Python/Blueprints) or add a delegate to the native callback using GetNativeOnImportSceneCompleted (C++) which will be called when the import job is finished.

retrieve_import_scene_result

Retrieves the result of a job created using the ImportScene function. May include errors that should be checked before working with the data. Will wait until the job is completed if it hasn't already. If you don't want to implement a synchronous workflow, use the matching callback which will get the result directly or make sure to create all your ImportScene jobs before retrieving the result for any of them.

Properties details

on_export_scene_completed

Delegate type for triggering when an export job is completed.

on_import_scene_completed

Delegate type for triggering when an import job is completed.

Data structs details

SubsystemJobResult

Struct holding a result coming out of a SimplygonSubsystem job. FSubsystemJobResult is the base abstract class holding everything common between the different types of jobs.

ExportSceneResult

The result coming out of an Export[Actors|StaticMeshComponents|StaticMesh]ToScene SimplygonSubsystem job.

ImportSceneResult

The result coming out of an ImportScene SimplygonSubsystem job.

SgSceneImportSettings

Import settings to use when importing a Simplygon scene.

SgGeometryImportSettings

Import settings to use when importing a Simplygon geometry data to a FMeshDescription.

SgMaterialImportSettings

Import settings to use when importing a Simplygon material to UMaterialInterface.

SgComponentExportSettings

Export settings to use when exporting a UStaticMeshComponent.

SgGeneralExportSettings

General export settings

SgMeshExportSettings

Settings used to setup Simplygon API scene when exporting an individual UStaticMesh.

SgSceneMeshExportSettings

Settings used to setup Simplygon API scene when exporting a UStaticMesh as part of a scene.

SgSceneExportSettings

Export settings to use when exporting a Simplygon scene.

SgGeometryExportSettings

Export settings for geometry data to use when exporting a Simplygon scene.

SgMaterialExportSettings

Export settings for material data to use when exporting a Simplygon scene.

SgMaterialProperties

The material properties that are enabled will get flattened to textures, and exported with the scene.

Enums details

SgSeparateMaterialsMode

The material separation mode to use when there is unique data sampled in a material.

SgSourceModelExportMode

This enum specifies which source model to export.