├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── RUNBOOK.md ├── csv2md.bat ├── exts ├── maticodes.doh_2022_07_22 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2022_07_22 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ ├── cmds_more_params.py │ │ ├── reference_usdz.py │ │ ├── run_action_graph.py │ │ └── set_current_time.py ├── maticodes.doh_2022_08_12 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2022_08_12 │ │ │ ├── __init__.py │ │ │ ├── extension.py │ │ │ ├── object_info_manipulator.py │ │ │ ├── object_info_model.py │ │ │ └── viewport_scene.py │ └── scripts │ │ ├── create_group_anywhere.py │ │ ├── create_many_prims.py │ │ ├── does_prim_exist.py │ │ ├── refer_to_child_prim.py │ │ └── viewport_popup_notification.py ├── maticodes.doh_2022_08_26 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2022_08_26 │ │ │ ├── __init__.py │ │ │ ├── extension.py │ │ │ └── math.py │ └── scripts │ │ ├── corner_rounding.py │ │ ├── focus_prim.py │ │ ├── get_world_pos.py │ │ ├── mouse_cursor_shape.py │ │ └── refresh_combobox.py ├── maticodes.doh_2022_09_02 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2022_09_02 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ ├── add_menu.py │ │ ├── define_ui_colors.py │ │ ├── get_local.py │ │ ├── what_is_cl.py │ │ └── what_is_sc.py ├── maticodes.doh_2022_09_09 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2022_09_09 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ ├── skip_undo_history.py │ │ └── undo_group.py ├── maticodes.doh_2022_09_23 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2022_09_23 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ ├── combobox_selected_item.py │ │ ├── one_widget_in_container.py │ │ ├── simple_instancer.py │ │ └── use_tokens.py ├── maticodes.doh_2022_09_30 │ ├── assets │ │ ├── .thumbs │ │ │ └── 256x256 │ │ │ │ └── omnigraph_example.usd.png │ │ └── omnigraph_example.usd │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2022_09_30 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ ├── curve_widths.py │ │ ├── docking.py │ │ ├── omnigraph.py │ │ └── vp2.py ├── maticodes.doh_2022_10_07 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2022_10_07 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ ├── create_viewport.py │ │ └── usd_update_stream.py ├── maticodes.doh_2022_10_14 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2022_10_14 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ └── context_menu_inject.py ├── maticodes.doh_2022_10_21 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2022_10_21 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ └── my_script.py ├── maticodes.doh_2022_10_28 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2022_10_28 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ ├── docking.py │ │ ├── extras.py │ │ └── usd_watcher.py ├── maticodes.doh_2022_11_04 │ ├── config │ │ └── extension.toml │ ├── data │ │ ├── brownstone_02.PNG │ │ ├── brownstone_04.PNG │ │ └── usdview_thumbnail.PNG │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2022_11_04 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ ├── ext_names.txt │ │ ├── loop.py │ │ └── progress_bar.py ├── maticodes.doh_2022_11_18 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2022_11_18 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ └── placer_model.py ├── maticodes.doh_2022_12_02 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2022_12_02 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ └── spawn_objects.py ├── maticodes.doh_2022_12_09 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2022_12_09 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ ├── collect_asset.py │ │ └── screenshot_viewport.py ├── maticodes.doh_2022_12_16 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2022_12_16 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ ├── file_exporter.py │ │ ├── file_import.py │ │ └── script_node.py ├── maticodes.doh_2023_01_06 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2023_01_06 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ ├── add_script_component.py │ │ ├── interact_script_components.py │ │ └── query_script_components.py ├── maticodes.doh_2023_01_13 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── graphs │ │ └── swap_materials.usda │ ├── maticodes │ │ └── doh_2023_01_13 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ └── add_script_component.py ├── maticodes.doh_2023_01_20 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2023_01_20 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ ├── check_omni_file_exists.py │ │ ├── duplicate_prim.py │ │ └── selection_changed_event.py ├── maticodes.doh_2023_01_27 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── graphs │ │ └── rotate_cube.usda │ ├── maticodes │ │ └── doh_2023_01_27 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ └── sub_child_changes.py ├── maticodes.doh_2023_03_31 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2023_03_31 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ └── viewport_ui.py ├── maticodes.doh_2023_04_07 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2023_04_07 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ ├── current_frame_number.py │ │ ├── get_local_transform.py │ │ └── sceneui_behavior.py ├── maticodes.doh_2023_04_14 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2023_04_14 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ ├── execute_action.py │ │ ├── move_prim_forward.py │ │ └── toggle_fullscreen.py ├── maticodes.doh_2023_04_21 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2023_04_21 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ ├── action_graph_ui.usd │ │ ├── create_mdl_mtl.py │ │ ├── lock_prim.py │ │ └── pass_arg_to_callback.py ├── maticodes.doh_2023_04_28 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2023_04_28 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ ├── change_viewport_camera.py │ │ ├── custom_attrs.py │ │ ├── custom_global_data.py │ │ ├── make_unselectable.py │ │ └── toggle_hud.py ├── maticodes.doh_2023_05_05 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2023_05_05 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ ├── change_renderer.py │ │ ├── change_variants.py │ │ └── omnilive.py ├── maticodes.doh_2023_05_12 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2023_05_12 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ └── my_script.py ├── maticodes.doh_2023_05_26 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2023_05_26 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ └── get_references.py ├── maticodes.doh_2023_06_23 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2023_06_23 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ └── select_prims.py ├── maticodes.doh_2023_08_18 │ ├── config │ │ └── extension.toml │ ├── data │ │ └── test_stage.usd │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2023_08_18 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ └── my_script.py ├── maticodes.doh_2023_08_25 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2023_08_25 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ ├── add_sbsar.py │ │ └── get_selected_meshes.py ├── maticodes.doh_2023_09_01 │ ├── config │ │ └── extension.toml │ ├── docs │ │ └── README.md │ ├── maticodes │ │ └── doh_2023_09_01 │ │ │ ├── __init__.py │ │ │ └── extension.py │ └── scripts │ │ ├── logging.py │ │ └── xforming.py └── maticodes.doh_2023_09_08 │ ├── config │ └── extension.toml │ ├── docs │ └── README.md │ ├── maticodes │ └── doh_2023_09_08 │ │ ├── __init__.py │ │ └── extension.py │ └── scripts │ ├── sub_event.py │ └── trigger_every_N.py ├── link_app.bat ├── link_app.sh ├── make_ext.bat └── tools ├── packman ├── bootstrap │ ├── configure.bat │ ├── download_file_from_url.ps1 │ ├── fetch_file_from_packman_bootstrap.cmd │ ├── generate_temp_file_name.ps1 │ ├── generate_temp_folder.ps1 │ └── install_package.py ├── config.packman.xml ├── packman ├── packman.cmd ├── python.bat └── python.sh └── scripts ├── csv2md.py ├── link_app.py ├── make_ext.py └── template └── maticodes.doh_YYYY_MM_DD ├── config └── extension.toml ├── docs └── README.md ├── maticodes └── doh_YYYY_MM_DD │ ├── __init__.py │ └── extension.py └── scripts └── my_script.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/README.md -------------------------------------------------------------------------------- /RUNBOOK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/RUNBOOK.md -------------------------------------------------------------------------------- /csv2md.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/csv2md.bat -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_07_22/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_07_22/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_07_22/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_07_22/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_07_22/maticodes/doh_2022_07_22/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | from .extension import * 3 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_07_22/maticodes/doh_2022_07_22/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_07_22/maticodes/doh_2022_07_22/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_07_22/scripts/cmds_more_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_07_22/scripts/cmds_more_params.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_07_22/scripts/reference_usdz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_07_22/scripts/reference_usdz.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_07_22/scripts/run_action_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_07_22/scripts/run_action_graph.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_07_22/scripts/set_current_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_07_22/scripts/set_current_time.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_08_12/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_08_12/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_08_12/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_08_12/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_08_12/maticodes/doh_2022_08_12/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_08_12/maticodes/doh_2022_08_12/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_08_12/maticodes/doh_2022_08_12/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_08_12/maticodes/doh_2022_08_12/object_info_manipulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_08_12/maticodes/doh_2022_08_12/object_info_manipulator.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_08_12/maticodes/doh_2022_08_12/object_info_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_08_12/maticodes/doh_2022_08_12/object_info_model.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_08_12/maticodes/doh_2022_08_12/viewport_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_08_12/maticodes/doh_2022_08_12/viewport_scene.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_08_12/scripts/create_group_anywhere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_08_12/scripts/create_group_anywhere.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_08_12/scripts/create_many_prims.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_08_12/scripts/create_many_prims.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_08_12/scripts/does_prim_exist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_08_12/scripts/does_prim_exist.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_08_12/scripts/refer_to_child_prim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_08_12/scripts/refer_to_child_prim.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_08_12/scripts/viewport_popup_notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_08_12/scripts/viewport_popup_notification.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_08_26/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_08_26/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_08_26/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_08_26/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_08_26/maticodes/doh_2022_08_26/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_08_26/maticodes/doh_2022_08_26/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_08_26/maticodes/doh_2022_08_26/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_08_26/maticodes/doh_2022_08_26/math.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | def add(a, b): 4 | return a + b -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_08_26/scripts/corner_rounding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_08_26/scripts/corner_rounding.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_08_26/scripts/focus_prim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_08_26/scripts/focus_prim.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_08_26/scripts/get_world_pos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_08_26/scripts/get_world_pos.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_08_26/scripts/mouse_cursor_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_08_26/scripts/mouse_cursor_shape.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_08_26/scripts/refresh_combobox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_08_26/scripts/refresh_combobox.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_02/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_02/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_02/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_02/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_02/maticodes/doh_2022_09_02/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_02/maticodes/doh_2022_09_02/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_02/maticodes/doh_2022_09_02/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_02/scripts/add_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_02/scripts/add_menu.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_02/scripts/define_ui_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_02/scripts/define_ui_colors.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_02/scripts/get_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_02/scripts/get_local.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_02/scripts/what_is_cl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_02/scripts/what_is_cl.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_02/scripts/what_is_sc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_02/scripts/what_is_sc.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_09/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_09/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_09/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_09/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_09/maticodes/doh_2022_09_09/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_09/maticodes/doh_2022_09_09/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_09/maticodes/doh_2022_09_09/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_09/scripts/skip_undo_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_09/scripts/skip_undo_history.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_09/scripts/undo_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_09/scripts/undo_group.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_23/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_23/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_23/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_23/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_23/maticodes/doh_2022_09_23/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_23/maticodes/doh_2022_09_23/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_23/maticodes/doh_2022_09_23/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_23/scripts/combobox_selected_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_23/scripts/combobox_selected_item.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_23/scripts/one_widget_in_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_23/scripts/one_widget_in_container.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_23/scripts/simple_instancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_23/scripts/simple_instancer.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_23/scripts/use_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_23/scripts/use_tokens.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_30/assets/.thumbs/256x256/omnigraph_example.usd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_30/assets/.thumbs/256x256/omnigraph_example.usd.png -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_30/assets/omnigraph_example.usd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_30/assets/omnigraph_example.usd -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_30/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_30/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_30/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_30/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_30/maticodes/doh_2022_09_30/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_30/maticodes/doh_2022_09_30/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_30/maticodes/doh_2022_09_30/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_30/scripts/curve_widths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_30/scripts/curve_widths.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_30/scripts/docking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_30/scripts/docking.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_30/scripts/omnigraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_30/scripts/omnigraph.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_09_30/scripts/vp2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_09_30/scripts/vp2.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_10_07/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_10_07/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_10_07/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_10_07/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_10_07/maticodes/doh_2022_10_07/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_10_07/maticodes/doh_2022_10_07/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_10_07/maticodes/doh_2022_10_07/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_10_07/scripts/create_viewport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_10_07/scripts/create_viewport.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_10_07/scripts/usd_update_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_10_07/scripts/usd_update_stream.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_10_14/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_10_14/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_10_14/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_10_14/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_10_14/maticodes/doh_2022_10_14/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_10_14/maticodes/doh_2022_10_14/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_10_14/maticodes/doh_2022_10_14/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_10_14/scripts/context_menu_inject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_10_14/scripts/context_menu_inject.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_10_21/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_10_21/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_10_21/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_10_21/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_10_21/maticodes/doh_2022_10_21/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_10_21/maticodes/doh_2022_10_21/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_10_21/maticodes/doh_2022_10_21/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_10_21/scripts/my_script.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_10_28/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_10_28/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_10_28/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_10_28/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_10_28/maticodes/doh_2022_10_28/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_10_28/maticodes/doh_2022_10_28/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_10_28/maticodes/doh_2022_10_28/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_10_28/scripts/docking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_10_28/scripts/docking.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_10_28/scripts/extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_10_28/scripts/extras.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_10_28/scripts/usd_watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_10_28/scripts/usd_watcher.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_11_04/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_11_04/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_11_04/data/brownstone_02.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_11_04/data/brownstone_02.PNG -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_11_04/data/brownstone_04.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_11_04/data/brownstone_04.PNG -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_11_04/data/usdview_thumbnail.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_11_04/data/usdview_thumbnail.PNG -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_11_04/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_11_04/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_11_04/maticodes/doh_2022_11_04/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_11_04/maticodes/doh_2022_11_04/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_11_04/maticodes/doh_2022_11_04/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_11_04/scripts/ext_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_11_04/scripts/ext_names.txt -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_11_04/scripts/loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_11_04/scripts/loop.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_11_04/scripts/progress_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_11_04/scripts/progress_bar.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_11_18/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_11_18/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_11_18/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_11_18/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_11_18/maticodes/doh_2022_11_18/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_11_18/maticodes/doh_2022_11_18/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_11_18/maticodes/doh_2022_11_18/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_11_18/scripts/placer_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_11_18/scripts/placer_model.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_12_02/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_12_02/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_12_02/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_12_02/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_12_02/maticodes/doh_2022_12_02/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_12_02/maticodes/doh_2022_12_02/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_12_02/maticodes/doh_2022_12_02/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_12_02/scripts/spawn_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_12_02/scripts/spawn_objects.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_12_09/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_12_09/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_12_09/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_12_09/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_12_09/maticodes/doh_2022_12_09/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_12_09/maticodes/doh_2022_12_09/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_12_09/maticodes/doh_2022_12_09/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_12_09/scripts/collect_asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_12_09/scripts/collect_asset.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_12_09/scripts/screenshot_viewport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_12_09/scripts/screenshot_viewport.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_12_16/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_12_16/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_12_16/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_12_16/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_12_16/maticodes/doh_2022_12_16/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_12_16/maticodes/doh_2022_12_16/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_12_16/maticodes/doh_2022_12_16/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_12_16/scripts/file_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_12_16/scripts/file_exporter.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_12_16/scripts/file_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_12_16/scripts/file_import.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2022_12_16/scripts/script_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2022_12_16/scripts/script_node.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_01_06/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_01_06/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_01_06/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_01_06/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_01_06/maticodes/doh_2023_01_06/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_01_06/maticodes/doh_2023_01_06/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_01_06/maticodes/doh_2023_01_06/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_01_06/scripts/add_script_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_01_06/scripts/add_script_component.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_01_06/scripts/interact_script_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_01_06/scripts/interact_script_components.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_01_06/scripts/query_script_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_01_06/scripts/query_script_components.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_01_13/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_01_13/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_01_13/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_01_13/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_01_13/graphs/swap_materials.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_01_13/graphs/swap_materials.usda -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_01_13/maticodes/doh_2023_01_13/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_01_13/maticodes/doh_2023_01_13/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_01_13/maticodes/doh_2023_01_13/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_01_13/scripts/add_script_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_01_13/scripts/add_script_component.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_01_20/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_01_20/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_01_20/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_01_20/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_01_20/maticodes/doh_2023_01_20/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_01_20/maticodes/doh_2023_01_20/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_01_20/maticodes/doh_2023_01_20/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_01_20/scripts/check_omni_file_exists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_01_20/scripts/check_omni_file_exists.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_01_20/scripts/duplicate_prim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_01_20/scripts/duplicate_prim.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_01_20/scripts/selection_changed_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_01_20/scripts/selection_changed_event.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_01_27/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_01_27/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_01_27/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_01_27/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_01_27/graphs/rotate_cube.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_01_27/graphs/rotate_cube.usda -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_01_27/maticodes/doh_2023_01_27/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_01_27/maticodes/doh_2023_01_27/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_01_27/maticodes/doh_2023_01_27/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_01_27/scripts/sub_child_changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_01_27/scripts/sub_child_changes.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_03_31/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_03_31/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_03_31/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_03_31/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_03_31/maticodes/doh_2023_03_31/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_03_31/maticodes/doh_2023_03_31/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_03_31/maticodes/doh_2023_03_31/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_03_31/scripts/viewport_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_03_31/scripts/viewport_ui.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_07/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_04_07/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_07/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_04_07/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_07/maticodes/doh_2023_04_07/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_07/maticodes/doh_2023_04_07/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_04_07/maticodes/doh_2023_04_07/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_07/scripts/current_frame_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_04_07/scripts/current_frame_number.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_07/scripts/get_local_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_04_07/scripts/get_local_transform.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_07/scripts/sceneui_behavior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_04_07/scripts/sceneui_behavior.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_14/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_04_14/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_14/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_04_14/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_14/maticodes/doh_2023_04_14/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_14/maticodes/doh_2023_04_14/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_04_14/maticodes/doh_2023_04_14/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_14/scripts/execute_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_04_14/scripts/execute_action.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_14/scripts/move_prim_forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_04_14/scripts/move_prim_forward.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_14/scripts/toggle_fullscreen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_04_14/scripts/toggle_fullscreen.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_21/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_04_21/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_21/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_04_21/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_21/maticodes/doh_2023_04_21/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_21/maticodes/doh_2023_04_21/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_04_21/maticodes/doh_2023_04_21/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_21/scripts/action_graph_ui.usd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_04_21/scripts/action_graph_ui.usd -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_21/scripts/create_mdl_mtl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_04_21/scripts/create_mdl_mtl.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_21/scripts/lock_prim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_04_21/scripts/lock_prim.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_21/scripts/pass_arg_to_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_04_21/scripts/pass_arg_to_callback.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_28/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_04_28/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_28/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_04_28/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_28/maticodes/doh_2023_04_28/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_28/maticodes/doh_2023_04_28/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_04_28/maticodes/doh_2023_04_28/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_28/scripts/change_viewport_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_04_28/scripts/change_viewport_camera.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_28/scripts/custom_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_04_28/scripts/custom_attrs.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_28/scripts/custom_global_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_04_28/scripts/custom_global_data.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_28/scripts/make_unselectable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_04_28/scripts/make_unselectable.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_04_28/scripts/toggle_hud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_04_28/scripts/toggle_hud.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_05_05/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_05_05/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_05_05/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_05_05/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_05_05/maticodes/doh_2023_05_05/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_05_05/maticodes/doh_2023_05_05/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_05_05/maticodes/doh_2023_05_05/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_05_05/scripts/change_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_05_05/scripts/change_renderer.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_05_05/scripts/change_variants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_05_05/scripts/change_variants.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_05_05/scripts/omnilive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_05_05/scripts/omnilive.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_05_12/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_05_12/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_05_12/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_05_12/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_05_12/maticodes/doh_2023_05_12/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_05_12/maticodes/doh_2023_05_12/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_05_12/maticodes/doh_2023_05_12/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_05_12/scripts/my_script.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | import omni.ui as ui -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_05_26/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_05_26/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_05_26/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_05_26/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_05_26/maticodes/doh_2023_05_26/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_05_26/maticodes/doh_2023_05_26/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_05_26/maticodes/doh_2023_05_26/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_05_26/scripts/get_references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_05_26/scripts/get_references.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_06_23/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_06_23/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_06_23/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_06_23/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_06_23/maticodes/doh_2023_06_23/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_06_23/maticodes/doh_2023_06_23/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_06_23/maticodes/doh_2023_06_23/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_06_23/scripts/select_prims.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_06_23/scripts/select_prims.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_08_18/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_08_18/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_08_18/data/test_stage.usd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_08_18/data/test_stage.usd -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_08_18/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_08_18/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_08_18/maticodes/doh_2023_08_18/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_08_18/maticodes/doh_2023_08_18/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_08_18/maticodes/doh_2023_08_18/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_08_18/scripts/my_script.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_08_25/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_08_25/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_08_25/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_08_25/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_08_25/maticodes/doh_2023_08_25/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_08_25/maticodes/doh_2023_08_25/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_08_25/maticodes/doh_2023_08_25/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_08_25/scripts/add_sbsar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_08_25/scripts/add_sbsar.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_08_25/scripts/get_selected_meshes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_08_25/scripts/get_selected_meshes.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_09_01/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_09_01/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_09_01/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_09_01/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_09_01/maticodes/doh_2023_09_01/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_09_01/maticodes/doh_2023_09_01/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_09_01/maticodes/doh_2023_09_01/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_09_01/scripts/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_09_01/scripts/logging.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_09_01/scripts/xforming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_09_01/scripts/xforming.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_09_08/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_09_08/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_09_08/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_09_08/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_09_08/maticodes/doh_2023_09_08/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_09_08/maticodes/doh_2023_09_08/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_09_08/maticodes/doh_2023_09_08/extension.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_09_08/scripts/sub_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_09_08/scripts/sub_event.py -------------------------------------------------------------------------------- /exts/maticodes.doh_2023_09_08/scripts/trigger_every_N.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/exts/maticodes.doh_2023_09_08/scripts/trigger_every_N.py -------------------------------------------------------------------------------- /link_app.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/link_app.bat -------------------------------------------------------------------------------- /link_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/link_app.sh -------------------------------------------------------------------------------- /make_ext.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/make_ext.bat -------------------------------------------------------------------------------- /tools/packman/bootstrap/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/tools/packman/bootstrap/configure.bat -------------------------------------------------------------------------------- /tools/packman/bootstrap/download_file_from_url.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/tools/packman/bootstrap/download_file_from_url.ps1 -------------------------------------------------------------------------------- /tools/packman/bootstrap/fetch_file_from_packman_bootstrap.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/tools/packman/bootstrap/fetch_file_from_packman_bootstrap.cmd -------------------------------------------------------------------------------- /tools/packman/bootstrap/generate_temp_file_name.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/tools/packman/bootstrap/generate_temp_file_name.ps1 -------------------------------------------------------------------------------- /tools/packman/bootstrap/generate_temp_folder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/tools/packman/bootstrap/generate_temp_folder.ps1 -------------------------------------------------------------------------------- /tools/packman/bootstrap/install_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/tools/packman/bootstrap/install_package.py -------------------------------------------------------------------------------- /tools/packman/config.packman.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/tools/packman/config.packman.xml -------------------------------------------------------------------------------- /tools/packman/packman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/tools/packman/packman -------------------------------------------------------------------------------- /tools/packman/packman.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/tools/packman/packman.cmd -------------------------------------------------------------------------------- /tools/packman/python.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/tools/packman/python.bat -------------------------------------------------------------------------------- /tools/packman/python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/tools/packman/python.sh -------------------------------------------------------------------------------- /tools/scripts/csv2md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/tools/scripts/csv2md.py -------------------------------------------------------------------------------- /tools/scripts/link_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/tools/scripts/link_app.py -------------------------------------------------------------------------------- /tools/scripts/make_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/tools/scripts/make_ext.py -------------------------------------------------------------------------------- /tools/scripts/template/maticodes.doh_YYYY_MM_DD/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/tools/scripts/template/maticodes.doh_YYYY_MM_DD/config/extension.toml -------------------------------------------------------------------------------- /tools/scripts/template/maticodes.doh_YYYY_MM_DD/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/tools/scripts/template/maticodes.doh_YYYY_MM_DD/docs/README.md -------------------------------------------------------------------------------- /tools/scripts/template/maticodes.doh_YYYY_MM_DD/maticodes/doh_YYYY_MM_DD/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /tools/scripts/template/maticodes.doh_YYYY_MM_DD/maticodes/doh_YYYY_MM_DD/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/developer-office-hours/HEAD/tools/scripts/template/maticodes.doh_YYYY_MM_DD/maticodes/doh_YYYY_MM_DD/extension.py -------------------------------------------------------------------------------- /tools/scripts/template/maticodes.doh_YYYY_MM_DD/scripts/my_script.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 --------------------------------------------------------------------------------