export_rumba_animation

export_rumba_animation(filename, progress_callback=None, comments='', tags='')

Export the project animation in a .rumbaanim file.

Parameters
  • filename (str) – the filename of the destination file.

  • progress_callback (function) – the progress callback

  • comments (str) – the comments

  • tags (str) – the tags, coma separated

Example:

import rumbapy

with rumbapy.Progress("Exporting animation...") as progress:
  rumbapy.export_rumba_animation("my_animation.rumbaanim", progress=progress.update)