[isaacsim.asset.browser] Isaac Sim Asset Browser#
Version: 1.3.19
The Isaac Sim Asset Browser extension provides an user interface for loading isaac sim assets and files.
 
Enable Extension#
The extension can be enabled (if not already) in one of the following ways:
Define the next entry as an application argument from a terminal.
APP_SCRIPT.(sh|bat) --enable isaacsim.asset.browser
Define the next entry under [dependencies] in an experience (.kit) file or an extension configuration (extension.toml) file.
[dependencies]
"isaacsim.asset.browser" = {}
Open the Window > Extensions menu in a running application instance and search for isaacsim.asset.browser.
Then, toggle the enable control button if it is not already active.
Actions in isaacsim.asset.browser#
| ID | Display Name | Description | 
|---|---|---|
| open_isaac_sim_asset_browser | Open Isaac Sim Asset Browser | 
Settings#
Extension Settings#
The table list the extension-specific settings.
| Setting name | Description | Type | Default value | 
|---|---|---|---|
| 
 | Root folder URLs to list and monitor. | 
 | 
 | 
| 
 | List of asset categories that can be dragged from the browser to the viewport window. | 
 | 
 | 
| 
 | Number of seconds to wait for the folder to be listed/read from. | 
 | 
 | 
| 
 | Filter for USD Types only | 
 | 
 | 
| 
 | Use only assets with thumbnail | 
 | 
 | 
| 
 | Whether the browser window is visible when the extension starts up. | 
 | 
 | 
The extension-specific settings can be either specified (set) or retrieved (get) in one of the following ways:
Define the key and value of the setting as an application argument from a terminal.
APP_SCRIPT.(sh|bat) --/exts/isaacsim.asset.browser/SETTING_NAME=SETTING_VALUE
Define the key and value of the setting under [settings] in an experience (.kit) file or an extension configuration (extension.toml) file.
[settings]
exts."isaacsim.asset.browser".SETTING_NAME = SETTING_VALUE
Define the key and value of the setting using the carb framework (in Python).
import carb
settings = carb.settings.get_settings()
settings.set("/exts/isaacsim.asset.browser/SETTING_NAME", SETTING_VALUE)
Define the key to query the value of the setting using the carb framework (in Python).
import carb
settings = carb.settings.get_settings()
value = settings.get("/exts/isaacsim.asset.browser/SETTING_NAME")