├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── exts └── maticodes.generator.bookshelf │ ├── config │ └── extension.toml │ ├── data │ ├── book_A.usd │ ├── clip.gif │ ├── icon.png │ └── preview.png │ ├── docs │ ├── CHANGELOG.md │ └── README.md │ └── maticodes │ └── generator │ └── bookshelf │ ├── __init__.py │ ├── extension.py │ ├── generator.py │ ├── ui.py │ └── utils.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 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/README.md -------------------------------------------------------------------------------- /exts/maticodes.generator.bookshelf/config/extension.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/exts/maticodes.generator.bookshelf/config/extension.toml -------------------------------------------------------------------------------- /exts/maticodes.generator.bookshelf/data/book_A.usd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/exts/maticodes.generator.bookshelf/data/book_A.usd -------------------------------------------------------------------------------- /exts/maticodes.generator.bookshelf/data/clip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/exts/maticodes.generator.bookshelf/data/clip.gif -------------------------------------------------------------------------------- /exts/maticodes.generator.bookshelf/data/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/exts/maticodes.generator.bookshelf/data/icon.png -------------------------------------------------------------------------------- /exts/maticodes.generator.bookshelf/data/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/exts/maticodes.generator.bookshelf/data/preview.png -------------------------------------------------------------------------------- /exts/maticodes.generator.bookshelf/docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/exts/maticodes.generator.bookshelf/docs/CHANGELOG.md -------------------------------------------------------------------------------- /exts/maticodes.generator.bookshelf/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/exts/maticodes.generator.bookshelf/docs/README.md -------------------------------------------------------------------------------- /exts/maticodes.generator.bookshelf/maticodes/generator/bookshelf/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: Apache-2.0 2 | 3 | from .extension import * 4 | -------------------------------------------------------------------------------- /exts/maticodes.generator.bookshelf/maticodes/generator/bookshelf/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/exts/maticodes.generator.bookshelf/maticodes/generator/bookshelf/extension.py -------------------------------------------------------------------------------- /exts/maticodes.generator.bookshelf/maticodes/generator/bookshelf/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/exts/maticodes.generator.bookshelf/maticodes/generator/bookshelf/generator.py -------------------------------------------------------------------------------- /exts/maticodes.generator.bookshelf/maticodes/generator/bookshelf/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/exts/maticodes.generator.bookshelf/maticodes/generator/bookshelf/ui.py -------------------------------------------------------------------------------- /exts/maticodes.generator.bookshelf/maticodes/generator/bookshelf/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/exts/maticodes.generator.bookshelf/maticodes/generator/bookshelf/utils.py -------------------------------------------------------------------------------- /link_app.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/link_app.bat -------------------------------------------------------------------------------- /link_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/link_app.sh -------------------------------------------------------------------------------- /tools/packman/bootstrap/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/tools/packman/bootstrap/configure.bat -------------------------------------------------------------------------------- /tools/packman/bootstrap/download_file_from_url.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/tools/packman/bootstrap/download_file_from_url.ps1 -------------------------------------------------------------------------------- /tools/packman/bootstrap/fetch_file_from_packman_bootstrap.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/tools/packman/bootstrap/fetch_file_from_packman_bootstrap.cmd -------------------------------------------------------------------------------- /tools/packman/bootstrap/generate_temp_file_name.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/tools/packman/bootstrap/generate_temp_file_name.ps1 -------------------------------------------------------------------------------- /tools/packman/bootstrap/generate_temp_folder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/tools/packman/bootstrap/generate_temp_folder.ps1 -------------------------------------------------------------------------------- /tools/packman/bootstrap/install_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/tools/packman/bootstrap/install_package.py -------------------------------------------------------------------------------- /tools/packman/config.packman.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/tools/packman/config.packman.xml -------------------------------------------------------------------------------- /tools/packman/packman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/tools/packman/packman -------------------------------------------------------------------------------- /tools/packman/packman.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/tools/packman/packman.cmd -------------------------------------------------------------------------------- /tools/packman/python.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/tools/packman/python.bat -------------------------------------------------------------------------------- /tools/packman/python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/tools/packman/python.sh -------------------------------------------------------------------------------- /tools/scripts/link_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mati-nvidia/omni-bookshelf-generator/HEAD/tools/scripts/link_app.py --------------------------------------------------------------------------------