├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── exts └── omni.example.reticle │ ├── config │ └── extension.toml │ ├── data │ └── preview.png │ ├── docs │ ├── CHANGELOG.md │ └── README.md │ ├── icons │ ├── crosshair.png │ ├── icon.png │ ├── off.png │ ├── quad.png │ └── thirds.png │ └── omni │ └── example │ └── reticle │ ├── __init__.py │ ├── constants.py │ ├── extension.py │ ├── models.py │ ├── styles.py │ └── views.py ├── link_app.bat ├── link_app.sh ├── 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 │ └── link_app.py └── tutorial ├── images ├── extension_search_paths.png ├── extensions_panel.png ├── letterbox_ratio.png ├── logo.png ├── new_search_path.png ├── quad.png ├── reticle_extensions_list.png ├── select_crosshair.png ├── select_quad.png ├── select_safe_areas.png ├── select_thirds.png ├── thirds.png ├── white_line.png └── window_extensions.png └── tutorial.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/README.md -------------------------------------------------------------------------------- /exts/omni.example.reticle/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/exts/omni.example.reticle/config/extension.toml -------------------------------------------------------------------------------- /exts/omni.example.reticle/data/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/exts/omni.example.reticle/data/preview.png -------------------------------------------------------------------------------- /exts/omni.example.reticle/docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/exts/omni.example.reticle/docs/CHANGELOG.md -------------------------------------------------------------------------------- /exts/omni.example.reticle/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/exts/omni.example.reticle/docs/README.md -------------------------------------------------------------------------------- /exts/omni.example.reticle/icons/crosshair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/exts/omni.example.reticle/icons/crosshair.png -------------------------------------------------------------------------------- /exts/omni.example.reticle/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/exts/omni.example.reticle/icons/icon.png -------------------------------------------------------------------------------- /exts/omni.example.reticle/icons/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/exts/omni.example.reticle/icons/off.png -------------------------------------------------------------------------------- /exts/omni.example.reticle/icons/quad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/exts/omni.example.reticle/icons/quad.png -------------------------------------------------------------------------------- /exts/omni.example.reticle/icons/thirds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/exts/omni.example.reticle/icons/thirds.png -------------------------------------------------------------------------------- /exts/omni.example.reticle/omni/example/reticle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/exts/omni.example.reticle/omni/example/reticle/__init__.py -------------------------------------------------------------------------------- /exts/omni.example.reticle/omni/example/reticle/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/exts/omni.example.reticle/omni/example/reticle/constants.py -------------------------------------------------------------------------------- /exts/omni.example.reticle/omni/example/reticle/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/exts/omni.example.reticle/omni/example/reticle/extension.py -------------------------------------------------------------------------------- /exts/omni.example.reticle/omni/example/reticle/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/exts/omni.example.reticle/omni/example/reticle/models.py -------------------------------------------------------------------------------- /exts/omni.example.reticle/omni/example/reticle/styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/exts/omni.example.reticle/omni/example/reticle/styles.py -------------------------------------------------------------------------------- /exts/omni.example.reticle/omni/example/reticle/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/exts/omni.example.reticle/omni/example/reticle/views.py -------------------------------------------------------------------------------- /link_app.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/link_app.bat -------------------------------------------------------------------------------- /link_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/link_app.sh -------------------------------------------------------------------------------- /tools/packman/bootstrap/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/tools/packman/bootstrap/configure.bat -------------------------------------------------------------------------------- /tools/packman/bootstrap/download_file_from_url.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/tools/packman/bootstrap/download_file_from_url.ps1 -------------------------------------------------------------------------------- /tools/packman/bootstrap/fetch_file_from_packman_bootstrap.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/tools/packman/bootstrap/fetch_file_from_packman_bootstrap.cmd -------------------------------------------------------------------------------- /tools/packman/bootstrap/generate_temp_file_name.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/tools/packman/bootstrap/generate_temp_file_name.ps1 -------------------------------------------------------------------------------- /tools/packman/bootstrap/generate_temp_folder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/tools/packman/bootstrap/generate_temp_folder.ps1 -------------------------------------------------------------------------------- /tools/packman/bootstrap/install_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/tools/packman/bootstrap/install_package.py -------------------------------------------------------------------------------- /tools/packman/config.packman.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/tools/packman/config.packman.xml -------------------------------------------------------------------------------- /tools/packman/packman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/tools/packman/packman -------------------------------------------------------------------------------- /tools/packman/packman.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/tools/packman/packman.cmd -------------------------------------------------------------------------------- /tools/packman/python.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/tools/packman/python.bat -------------------------------------------------------------------------------- /tools/packman/python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/tools/packman/python.sh -------------------------------------------------------------------------------- /tools/scripts/link_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/tools/scripts/link_app.py -------------------------------------------------------------------------------- /tutorial/images/extension_search_paths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/tutorial/images/extension_search_paths.png -------------------------------------------------------------------------------- /tutorial/images/extensions_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/tutorial/images/extensions_panel.png -------------------------------------------------------------------------------- /tutorial/images/letterbox_ratio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/tutorial/images/letterbox_ratio.png -------------------------------------------------------------------------------- /tutorial/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/tutorial/images/logo.png -------------------------------------------------------------------------------- /tutorial/images/new_search_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/tutorial/images/new_search_path.png -------------------------------------------------------------------------------- /tutorial/images/quad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/tutorial/images/quad.png -------------------------------------------------------------------------------- /tutorial/images/reticle_extensions_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/tutorial/images/reticle_extensions_list.png -------------------------------------------------------------------------------- /tutorial/images/select_crosshair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/tutorial/images/select_crosshair.png -------------------------------------------------------------------------------- /tutorial/images/select_quad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/tutorial/images/select_quad.png -------------------------------------------------------------------------------- /tutorial/images/select_safe_areas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/tutorial/images/select_safe_areas.png -------------------------------------------------------------------------------- /tutorial/images/select_thirds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/tutorial/images/select_thirds.png -------------------------------------------------------------------------------- /tutorial/images/thirds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/tutorial/images/thirds.png -------------------------------------------------------------------------------- /tutorial/images/white_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/tutorial/images/white_line.png -------------------------------------------------------------------------------- /tutorial/images/window_extensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/tutorial/images/window_extensions.png -------------------------------------------------------------------------------- /tutorial/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-Omniverse/kit-extension-sample-reticle/HEAD/tutorial/tutorial.md --------------------------------------------------------------------------------