Extension: omni.kit.window.file-1.3.52

Documentation Generated: Jul 17, 2024

Overview

This extension provides a collection of utility functions and actions to manage USD files, including creating, opening, saving and closing.

Here is an example of implementing menu click actions to open and save files easily with this extension.

with ui.Menu("File"):
      ui.MenuItem(
         "Load",
         triggered_fn=lambda: omni.kit.window.file.open()
      )
      ui.MenuItem(
         "Save",
         triggered_fn=lambda: omni.kit.window.file.save(dialog_options=DialogOptions.HIDE),
      )

For a detailed usage on how to use actions please refer to:

Actions Overview