Sequencer

Documentation Home Page HYPERSIM Home Page
Pour la documentation en FRANÇAIS, utilisez l'outil de traduction de votre navigateur Chrome, Edge ou Safari. Voir un exemple.

Sequencer

SEE ALSO: Sequence Manager | Quick Start GuidePython API

The Sequencer is accessed from the HYPERSIM Ribbon Options.

Its intended use is to record a series of user manipulations and execute them to automate HYPERSIM scripts.

It supports the Python API. As such, it can be used as a small IDE to write simple python scripts.

Here are some of its advantages:

  • The Sequencer allows the user to record recurring and repetitive operations so that they can be performed them automatically.

  • This sequence recorder stores the user's actions in a Python script according to the norms and standards of the HYPERSIM API.

  • This script can then be executed at the user's request.

  • This recorder does not replace a good Python programmer; it allows the user with little training in basic HYPERSIM API or Python to create simple and reusable macros.

  • It also allows the seasoned API programmer to quickly remember code or syntax that they are no longer familiar with.

Note : When a python project grows in scale (large script, multiple scripts, complex logic, complex environments/script arguments…), it is recommended to move towards a dedicated IDE, as described in the following page: Python API | Setup.