# Migrate from Simplygon 9 to Simplygon 10

The Simplygon Maya plug-in exports various commands and flags that exposes Simplygon functionality through Maya. From a user's point of view there aren't any significant changes in usability, other than installation and the need to upgrade the settings files from Simplygon 9 to Simplygon 10.

This guide will focus on how to migrate from Simplygon 9 to Simplygon 10.

# Installation

Simplygon 10 relies on environment variables to find certain components compared to previous solution of registry and configuration files. We recommend the Simplygon installer as it not only sets everything up correctly, but also installs all necessary prerequisites. We also provide a Simplygon 10 archive for manual installation. See the Simplygon 10 plug-in installation for further instructions. Please note that Simplygon 10 relies on its own set of environment flags.

# Settings / processing system

Simplygon 10 is using the Pipeline system for settings and processing which was introduced in Simplygon 9. Note that some settings might have been added, removed, renamed and / or moved to a different settings group. Please refer to the Pipeline migration documentation for information of how to migrate settings from Simplygon 9 to Simplygon 10.

# Support for Quad reduction

Simplygon 10 gets support for Quad reduction through the Simplygon API, 3ds Max and Maya. A new QuadReductionPipeline has been exposed in the Simplygon UI as well as through scripting in Max and Maya.

Quad export and import in Maya gets enabled automatically when at least one QuadReductionPipeline is active in the Simplygon UI. For scripting the QuadMode (qm) flag has to be provided for the Simplygon command.

Command
Simplygon
Short name Long name Description
qm QuadMode Enables quad export and import functionality (required for QuadReductionPipeline).

Absence of QuadReductionPipeline in UI, or QuadMode flag when scripting, will result in export / import handling all data as triangles (all Quad information will get lost).

# Legacy Remesher gets removed

The new Remesher that was introduced in Simplygon 9 completely replaces the old remesher in Simplygon 10. The old remesher (deprecated in Simplygon 9) has been completely removed in Simplygon 10.

# Script migration

The following sections contain details of how to migrate scripts from Simplygon 9 to Simplygon 10.

# Upgrade Pipeline files

Pipeline files from Simplygon 9 will need to be upgraded to work with Simplygon 10, trying to use a settings file from a previous version directly will most likely result in an error.

The Simplygon UI will upgrade supported Pipeline versions automatically when loading a Pipeline, although the Pipeline needs to be saved manually by the user (to the same or separate file).

If a Pipeline needs to be upgraded through script the Simplygon UI module has to be called manually. LoadPipelineFromFile will simply load the pipeline into the UI (and upgrade it automatically); while SavePipelineToFile can be used to save the changes to either the same or a new file.

We currently expose two functions:

    # Simplygon command

    There are no breaking changes, see Simplygon command reference for new flags.

    # SimplygonPipeline command

    There are no breaking changes, see SimplygonPipeline command reference for new flags.

    # SimplygonShadingNetwork command

    There are no breaking changes, see SimplygonShadingNetwork command reference for new flags.

    # Simplygon Python API

    The Simplygon module in Simplygon 10 has changed name, all existing scripts needs to be updated to make use of Simplygon 10:

    From:

    from simplygon import simplygon_loader
    from simplygon import Simplygon
    

    To:

    from simplygon10 import simplygon_loader
    from simplygon10 import Simplygon